Handle NEED_TIMEZONE, NEED_MYREALLOC
authorewt <devnull@localhost>
Wed, 7 May 1997 15:16:14 +0000 (15:16 +0000)
committerewt <devnull@localhost>
Wed, 7 May 1997 15:16:14 +0000 (15:16 +0000)
CVS patchset: 1611
CVS date: 1997/05/07 15:16:14

misc/miscfn.h

index 67e683d..bd033a0 100644 (file)
@@ -39,4 +39,15 @@ char *realpath(char *path, char resolved_path[]);
 char *realpath(const char *path, char resolved_path []);
 #endif
 
+#if NEED_TIMEZONE
+#include <sys/stdtypes.h>
+extern time_t timezone;
+#endif
+
+#if NEED_MYREALLOC
+#include <sys/stdtypes.h>
+#define realloc(ptr,size) myrealloc(ptr,size)
+extern void *myrealloc(void *, size_t);
+#endif
+
 #endif