X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Ftime.c;h=7b4b167e7a825b0a7cc1703db54bc97b0c662dce;hb=eac461c1f1ca91cfe282c779291d582ed6b336cb;hp=82ffab2c528e20b0d2a8e608413b606de695ce23;hpb=71e56a3ec29476514c3cdf57a7ac60a3d9733f1d;p=sbcl.git diff --git a/src/runtime/time.c b/src/runtime/time.c index 82ffab2..7b4b167 100644 --- a/src/runtime/time.c +++ b/src/runtime/time.c @@ -18,6 +18,11 @@ #include "sbcl.h" #include "runtime.h" +#ifdef LISP_FEATURE_HPUX +struct tm *gmtime_r(const time_t *timer, struct tm *result); +struct tm *localtime_r(const time_t *timer, struct tm *result); +#endif + void get_timezone(time_t when, int *secwest, boolean *dst) { struct tm ltm, gtm;