diff src/realpath.c @ 205:92f8ad5d0d3f r20-4b1

Import from CVS: tag r20-4b1
author cvs
date Mon, 13 Aug 2007 10:02:46 +0200
parents 850242ba4a81
children 558f606b08ae
line wrap: on
line diff
--- a/src/realpath.c	Mon Aug 13 10:02:23 2007 +0200
+++ b/src/realpath.c	Mon Aug 13 10:02:46 2007 +0200
@@ -59,10 +59,10 @@
 #define MAX_READLINKS 32
 
 #ifdef __STDC__
-char *realpath(CONST char *path, char resolved_path [])
+char *realpath(const char *path, char resolved_path [])
 #else
 char *realpath(path, resolved_path)
-CONST char *path;
+const char *path;
 char resolved_path [];
 #endif
 {