diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
commit | 02d3b39420839c9e09fd7c391f158e5c510bd600 (patch) | |
tree | 0dbd660f36a226fc545e719cb226114bb60f6c7c /php3_realpath.c | |
parent | 9ebd037226fcaa1804df73c419d5529a16957e0b (diff) | |
download | php-git-02d3b39420839c9e09fd7c391f158e5c510bd600.tar.gz |
More php3_ annihilation
Diffstat (limited to 'php3_realpath.c')
-rw-r--r-- | php3_realpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/php3_realpath.c b/php3_realpath.c index da74b25458..034c6bd837 100644 --- a/php3_realpath.c +++ b/php3_realpath.c @@ -31,9 +31,9 @@ #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) #endif -char *_php3_realpath(char *path, char resolved_path[]); +char *php_realpath(char *path, char resolved_path[]); -char *_php3_realpath(char *path, char resolved_path []) { +char *php_realpath(char *path, char resolved_path []) { char path_construction[MAXPATHLEN]; /* We build the result in here */ char *writepos; /* Position to write next char */ |