diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1999-01-21 17:31:43 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1999-01-21 17:31:43 +0000 |
commit | ace01ac29e9d0db40cafaaa4cb38b254d0dcfd61 (patch) | |
tree | ebdca369df3b05933e61efd3a4823258c3745fbd /usr.sbin/zic/ialloc.c | |
parent | 7807f372ee411b30d7488ac87b05055035e4807a (diff) | |
download | src-ace01ac29e9d0db40cafaaa4cb38b254d0dcfd61.tar.gz src-ace01ac29e9d0db40cafaaa4cb38b254d0dcfd61.zip |
Updated timezone compiler from Arthur Olson.
Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode1999a.tar.gz
Notes
Notes:
svn path=/vendor/tzcode/dist/; revision=42991
Diffstat (limited to 'usr.sbin/zic/ialloc.c')
-rw-r--r-- | usr.sbin/zic/ialloc.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.sbin/zic/ialloc.c b/usr.sbin/zic/ialloc.c index 5631947d0718..8a0c70157890 100644 --- a/usr.sbin/zic/ialloc.c +++ b/usr.sbin/zic/ialloc.c @@ -1,6 +1,6 @@ #ifndef lint #ifndef NOID -static char elsieid[] = "@(#)ialloc.c 8.28"; +static char elsieid[] = "@(#)ialloc.c 8.29"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -10,13 +10,6 @@ static char elsieid[] = "@(#)ialloc.c 8.28"; #define nonzero(n) (((n) == 0) ? 1 : (n)) -char * icalloc P((int nelem, int elsize)); -char * icatalloc P((char * old, const char * new)); -char * icpyalloc P((const char * string)); -char * imalloc P((int n)); -void * irealloc P((void * pointer, int size)); -void ifree P((char * pointer)); - char * imalloc(n) const int n; |