diff options
author | Derick Rethans <derick@php.net> | 2003-01-28 16:05:34 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-01-28 16:05:34 +0000 |
commit | 1ca8d7d4c3ced2814ef4de9f76efc14d338cb25c (patch) | |
tree | 3c0b46f4fff3023bcf43c02862b7bf9f0decba29 /main | |
parent | 4fe6fc8b0b1996af9336cb9c2d40e4d3ce0d2a1f (diff) | |
download | php-git-1ca8d7d4c3ced2814ef4de9f76efc14d338cb25c.tar.gz |
- Fix includes
Diffstat (limited to 'main')
-rw-r--r-- | main/php_scandir.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/main/php_scandir.c b/main/php_scandir.c index ee4dfebfcd..a0c9e13e27 100644 --- a/main/php_scandir.c +++ b/main/php_scandir.c @@ -25,22 +25,22 @@ #endif #ifndef HAVE_SCANDIR - #include <sys/types.h> +#include <sys/types.h> - #ifdef HAVE_DIRENT_H - #include <dirent.h> - #endif +#ifdef HAVE_DIRENT_H +#include <dirent.h> +#endif - #ifdef PHP_WIN32 - #include "win32/readdir.h" - #endif +#ifdef PHP_WIN32 +#include "win32/readdir.h" +#endif - #include <stdlib.h> - #include <search.h> +#include <stdlib.h> +#include <search.h> #endif #ifndef HAVE_ALPHASORT - #include <string.h> +#include <string.h> int alphasort(const struct dirent **a, const struct dirent **b) { |