iliaa           Tue Jan 28 11:04:10 2003 EDT

  Modified files:              
    /php4/main  php_scandir.c 
  Log:
  Fixed compiler warning.
  
  
Index: php4/main/php_scandir.c
diff -u php4/main/php_scandir.c:1.2 php4/main/php_scandir.c:1.3
--- php4/main/php_scandir.c:1.2 Mon Jan 27 19:42:54 2003
+++ php4/main/php_scandir.c     Tue Jan 28 11:04:10 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

Reply via email to