fmtbuf.c
fmtesc.c
pathaccess.c
- pathbin.c
pathcanon.c
pathcat.c
pathexists.c
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
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);
<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" />
<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>
+++ /dev/null
-/*************************************************************************
- * 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;
-}