summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorewt <devnull@localhost>1997-05-07 15:16:14 +0000
committerewt <devnull@localhost>1997-05-07 15:16:14 +0000
commitb00166a733e0a31db68e0a2f60706b10cde60b3c (patch)
treeb48c21c4d182afc85ba3ed229680884590567203 /misc
parent80a62f50911186070ace7f1ed09b2ae25c398589 (diff)
downloadrpm-b00166a733e0a31db68e0a2f60706b10cde60b3c.tar.gz
rpm-b00166a733e0a31db68e0a2f60706b10cde60b3c.tar.bz2
rpm-b00166a733e0a31db68e0a2f60706b10cde60b3c.zip
Handle NEED_TIMEZONE, NEED_MYREALLOC
CVS patchset: 1611 CVS date: 1997/05/07 15:16:14
Diffstat (limited to 'misc')
-rw-r--r--misc/miscfn.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/miscfn.h b/misc/miscfn.h
index 67e683d62..bd033a067 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 <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