iliaa Tue Jan 28 11:02:34 2003 EDT Modified files: (Branch: PHP_4_3) /php4/main php_scandir.c Log: Fixed compiler warning. Index: php4/main/php_scandir.c diff -u php4/main/php_scandir.c:1.2.2.1 php4/main/php_scandir.c:1.2.2.2 --- php4/main/php_scandir.c:1.2.2.1 Mon Jan 27 20:51:25 2003 +++ php4/main/php_scandir.c Tue Jan 28 11:02:33 2003 @@ -40,6 +40,8 @@ #endif #ifndef HAVE_ALPHASORT + #include <string.h> + int alphasort(const struct dirent **a, const struct dirent **b) { return strcoll((*a)->d_name,(*b)->d_name);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php