Protoype realpath() if it's not provided by libc.
authorewt <devnull@localhost>
Wed, 7 May 1997 15:05:05 +0000 (15:05 +0000)
committerewt <devnull@localhost>
Wed, 7 May 1997 15:05:05 +0000 (15:05 +0000)
CVS patchset: 1603
CVS date: 1997/05/07 15:05:05

misc/miscfn.h

index 3f75431..67e683d 100644 (file)
@@ -35,4 +35,8 @@ char *realpath(char *path, char resolved_path[]);
 #include <strings.h>
 #endif
 
+#if ! HAVE_REALPATH
+char *realpath(const char *path, char resolved_path []);
+#endif
+
 #endif