From b00166a733e0a31db68e0a2f60706b10cde60b3c Mon Sep 17 00:00:00 2001 From: ewt Date: Wed, 7 May 1997 15:16:14 +0000 Subject: [PATCH] Handle NEED_TIMEZONE, NEED_MYREALLOC CVS patchset: 1611 CVS date: 1997/05/07 15:16:14 --- misc/miscfn.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/misc/miscfn.h b/misc/miscfn.h index 67e683d..bd033a0 100644 --- a/misc/miscfn.h +++ b/misc/miscfn.h @@ -39,4 +39,15 @@ char *realpath(char *path, char resolved_path[]); char *realpath(const char *path, char resolved_path []); #endif +#if NEED_TIMEZONE +#include +extern time_t timezone; +#endif + +#if NEED_MYREALLOC +#include +#define realloc(ptr,size) myrealloc(ptr,size) +extern void *myrealloc(void *, size_t); +#endif + #endif -- 2.7.4