diff options
author | Sascha Schumann <sas@php.net> | 2000-02-23 15:44:02 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-02-23 15:44:02 +0000 |
commit | 53e1ea7728654dd62d000bac215f179faaf8ff59 (patch) | |
tree | 7e39468e91f46f7481a5b8488cac65aa40cb08d6 /ext/standard/microtime.c | |
parent | 86c96359f3a43b856a045a1e4784c3e9e3bd8dfe (diff) | |
download | php-git-53e1ea7728654dd62d000bac215f179faaf8ff59.tar.gz |
php.h should be the first file included, so that HAVE_* are defined
Diffstat (limited to 'ext/standard/microtime.c')
-rw-r--r-- | ext/standard/microtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/microtime.c b/ext/standard/microtime.c index 0679e4689f..9f9a565cdd 100644 --- a/ext/standard/microtime.c +++ b/ext/standard/microtime.c @@ -18,6 +18,8 @@ /* $Id$ */ +#include "php.h" + #include <stdlib.h> #ifdef HAVE_UNISTD_H #include <unistd.h> @@ -28,7 +30,6 @@ #include <sys/resource.h> #endif -#include "php.h" #include "microtime.h" #include "snprintf.h" |