diff options
author | ewt <devnull@localhost> | 1997-05-07 15:16:14 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-05-07 15:16:14 +0000 |
commit | b00166a733e0a31db68e0a2f60706b10cde60b3c (patch) | |
tree | b48c21c4d182afc85ba3ed229680884590567203 /misc | |
parent | 80a62f50911186070ace7f1ed09b2ae25c398589 (diff) | |
download | librpm-tizen-b00166a733e0a31db68e0a2f60706b10cde60b3c.tar.gz librpm-tizen-b00166a733e0a31db68e0a2f60706b10cde60b3c.tar.bz2 librpm-tizen-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.h | 11 |
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 |