From: Ilia Alshanetsky Date: Tue, 28 Jan 2003 16:02:33 +0000 (+0000) Subject: Fixed compiler warning. X-Git-Tag: php-4.3.2RC1~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6faa5e5bc48748bb189fb199efe63bf934657be5;p=php Fixed compiler warning. --- diff --git a/main/php_scandir.c b/main/php_scandir.c index a467a42bb9..ee4dfebfcd 100644 --- a/main/php_scandir.c +++ b/main/php_scandir.c @@ -40,6 +40,8 @@ #endif #ifndef HAVE_ALPHASORT + #include + int alphasort(const struct dirent **a, const struct dirent **b) { return strcoll((*a)->d_name,(*b)->d_name);