From d713fcc14df11b81504ec5a4b743242912a31108 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 25 May 2015 13:22:54 +0200 Subject: [PATCH] cleanup redundant S_IFDIR declaration --- ext/standard/file.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index 01c043f0ad..1755dab81b 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -122,9 +122,6 @@ php_file_globals file_globals; # include #endif -#ifndef S_ISDIR -# define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) -#endif /* }}} */ #define PHP_STREAM_TO_ZVAL(stream, arg) \ -- 2.50.1