From: Sascha Schumann Date: Wed, 23 Feb 2000 17:39:58 +0000 (+0000) Subject: Include and before X-Git-Tag: PHP-4.0-RC1~468 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=027512320fef86baa4b2ec4ed50d279e705fdb9c;p=php Include and before --- diff --git a/ext/standard/microtime.c b/ext/standard/microtime.c index 9f9a565cdd..360a0780df 100644 --- a/ext/standard/microtime.c +++ b/ext/standard/microtime.c @@ -20,28 +20,28 @@ #include "php.h" -#include +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef PHP_WIN32 +#include "win32/time.h" +#else +#include +#endif +#ifdef HAVE_SYS_RESOURCE_H +#include +#endif #ifdef HAVE_UNISTD_H #include #endif +#include #include +#include #include -#ifdef HAVE_SYS_RESOURCE_H -#include -#endif #include "microtime.h" #include "snprintf.h" -#include -#ifdef HAVE_GETTIMEOFDAY -#ifdef PHP_WIN32 -#include "win32/time.h" -#else -#include -#endif -#endif - #define NUL '\0' #define MICRO_IN_SEC 1000000.00