]> granicus.if.org Git - graphviz/commitdiff
remove now no longer used pathbin.c
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Apr 2021 00:02:44 +0000 (17:02 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Apr 2021 22:24:44 +0000 (15:24 -0700)
lib/ast/CMakeLists.txt
lib/ast/Makefile.am
lib/ast/ast.h
lib/ast/ast.vcxproj
lib/ast/ast.vcxproj.filters
lib/ast/pathbin.c [deleted file]

index a1849a39e5eb23d3fb483b1e1a41fbab7a281422..bd877d16553fffb7ed2039528e91805256fefd2c 100644 (file)
@@ -13,7 +13,6 @@ add_library(ast STATIC
     fmtbuf.c
     fmtesc.c
     pathaccess.c
-    pathbin.c
     pathcanon.c
     pathcat.c
     pathexists.c
index ce61ffc68944e0828337ed190f3905f1c689354c..1d4b23205ec86e5b3bbf92fae7b03836267e1972 100644 (file)
@@ -6,7 +6,7 @@ noinst_HEADERS = ast.h error.h hashkey.h
 noinst_LTLIBRARIES = libast_C.la
 
 libast_C_la_SOURCES = pathpath.c sfstr.h chresc.c chrtoi.c error.c \
-       fmtbuf.c fmtesc.c pathaccess.c pathbin.c pathcanon.c pathcat.c \
+       fmtbuf.c fmtesc.c pathaccess.c pathcanon.c pathcat.c \
        pathexists.c pathfind.c pathgetlink.c \
        strcopy.c stresc.c strmatch.c
 
index 3dc87c6f3349dacfbd6d2746e8d459c9a4e342ac..78ccdc768588c0c40827bba4968602271798c7df 100644 (file)
@@ -71,7 +71,6 @@ extern "C" {
                          size_t);
     extern char *pathaccess(char *, const char *, const char *,
                            const char *, int);
-    extern char *pathbin(void);
     extern char *pathcat(char *, const char *, int, const char *,
                         const char *);
     extern int pathgetlink(const char *, char *, int);
index bb994d1e69bc48219a0f87b3b58472d00dfb26c6..cbb8b59feee8433481985ca592636d55a652e8be 100644 (file)
@@ -89,7 +89,6 @@
     <ClCompile Include="fmtbuf.c" />
     <ClCompile Include="fmtesc.c" />
     <ClCompile Include="pathaccess.c" />
-    <ClCompile Include="pathbin.c" />
     <ClCompile Include="pathcanon.c" />
     <ClCompile Include="pathcat.c" />
     <ClCompile Include="pathexists.c" />
index 3e4f85ebe14ceb6b24b5f8080596fe6acba307fc..e79907f86664ffbc205af4c19010c25e3ac87c27 100644 (file)
@@ -50,9 +50,6 @@
     <ClCompile Include="pathaccess.c">
       <Filter>Source Files</Filter>
     </ClCompile>
-    <ClCompile Include="pathbin.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="pathcanon.c">
       <Filter>Source Files</Filter>
     </ClCompile>
diff --git a/lib/ast/pathbin.c b/lib/ast/pathbin.c
deleted file mode 100644 (file)
index 84803d5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
-
-/*
- * Glenn Fowler
- * AT&T Bell Laboratories
- *
- * return current PATH
- */
-
-#include <ast/ast.h>
-
-char *pathbin(void)
-{
-    char *bin;
-
-    if (!(bin = getenv("PATH"))) {
-       bin = "";
-    }
-    return bin;
-}