hyanantha Sat Sep 25 10:54:43 2004 EDT Modified files: /php-src/ext/standard microtime.c Log: removed unwanted NEW_LIBC checks as they are no more needed for NETAWRE http://cvs.php.net/diff.php/php-src/ext/standard/microtime.c?r1=1.44&r2=1.45&ty=u Index: php-src/ext/standard/microtime.c diff -u php-src/ext/standard/microtime.c:1.44 php-src/ext/standard/microtime.c:1.45 --- php-src/ext/standard/microtime.c:1.44 Thu Jan 8 03:17:33 2004 +++ php-src/ext/standard/microtime.c Sat Sep 25 10:54:41 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: microtime.c,v 1.44 2004/01/08 08:17:33 andi Exp $ */ +/* $Id: microtime.c,v 1.45 2004/09/25 14:54:41 hyanantha Exp $ */ #include "php.h" @@ -26,11 +26,8 @@ #ifdef PHP_WIN32 #include "win32/time.h" #elif defined(NETWARE) -#ifdef NEW_LIBC #include <sys/timeval.h> -#else -#include "netware/time_nw.h" -#endif +#include <sys/time.h> #else #include <sys/time.h> #endif
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php