diff options
author | Sascha Schumann <sas@php.net> | 1999-12-27 10:52:46 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-27 10:52:46 +0000 |
commit | 7e156e73b5fcd9fbaed6351f99d5ce9ee91cf6f0 (patch) | |
tree | 736bbfd06434de151e300c621bfe3f5d7800dd59 | |
parent | 4e1baf3a4ec67d89adfd83639162224cadb57dbe (diff) | |
download | php-git-7e156e73b5fcd9fbaed6351f99d5ce9ee91cf6f0.tar.gz |
Build correctly on systems which lack localtime_r
-rw-r--r-- | ext/dbase/dbf_misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dbase/dbf_misc.c b/ext/dbase/dbf_misc.c index fedb0d0f9c..dea7068a66 100644 --- a/ext/dbase/dbf_misc.c +++ b/ext/dbase/dbf_misc.c @@ -9,6 +9,8 @@ #include "dbf_misc.h" +#include "php_reentrancy.h" + /* * routine to change little endian long to host long */ |