diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-25 14:23:32 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-25 14:23:32 +0000 |
commit | c4b57bc16b62120bd52d42b30f960a71e2caa6e6 (patch) | |
tree | b3d08cf31cba5694bd63d9a149ea193de7cc970e | |
parent | 595268403a4bb5d43944e43f8dd6cb5372e3d974 (diff) | |
download | php-git-c4b57bc16b62120bd52d42b30f960a71e2caa6e6.tar.gz |
Now NetWare LibC supports proper stat structure no need of CLIB_STAT_PATCH and all such checks
-rw-r--r-- | ext/standard/link.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c index 42ab3d8d25..dca60529d9 100644 --- a/ext/standard/link.c +++ b/ext/standard/link.c @@ -83,11 +83,7 @@ PHP_FUNCTION(readlink) PHP_FUNCTION(linkinfo) { zval **filename; -#if defined(NETWARE) && defined(CLIB_STAT_PATCH) - struct stat_libc sb; -#else struct stat sb; -#endif int ret; if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == FAILURE) { |