comparison src/realpath.c @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents 92f8ad5d0d3f
children e11d67e05968
comparison
equal deleted inserted replaced
283:fa3d41851a08 284:558f606b08ae
57 #endif 57 #endif
58 58
59 #define MAX_READLINKS 32 59 #define MAX_READLINKS 32
60 60
61 #ifdef __STDC__ 61 #ifdef __STDC__
62 char *realpath(const char *path, char resolved_path []) 62 char *xrealpath(const char *path, char resolved_path [])
63 #else 63 #else
64 char *realpath(path, resolved_path) 64 char *xrealpath(path, resolved_path)
65 const char *path; 65 const char *path;
66 char resolved_path []; 66 char resolved_path [];
67 #endif 67 #endif
68 { 68 {
69 char copy_path[PATH_MAX]; 69 char copy_path[PATH_MAX];