diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2002-02-12 21:59:01 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2002-02-12 21:59:01 +0000 |
commit | 9f8072aebf624c96d362aecfefadcedbef9173bb (patch) | |
tree | 364f0b98df34e61da373da2f8213185b25fe3325 /time | |
parent | 9e86614ac937e8ec6bf403674445921f720fa90e (diff) | |
download | libapr-9f8072aebf624c96d362aecfefadcedbef9173bb.tar.gz |
More safe header exclusions from Mladen Turk <mturk@mappingsoft.com>
for the WinCE port.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r-- | time/win32/time.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/time/win32/time.c b/time/win32/time.c index 5f3d5da5f..9d46ecccf 100644 --- a/time/win32/time.c +++ b/time/win32/time.c @@ -57,8 +57,12 @@ #include "apr_general.h" #include "apr_lib.h" #include "apr_portable.h" +#if APR_HAVE_TIME_H #include <time.h> +#endif +#if APR_HAVE_ERRNO_H #include <errno.h> +#endif #include <string.h> #include <winbase.h> |