diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-01-29 07:04:06 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-01-29 07:04:06 +0000 |
commit | 7147b6fb5082ac29448d3f5d61e0070da3defa7e (patch) | |
tree | 7e02d63646cbbe078d3e641ff4882d7e259116ae /lib/libc/time/private.h | |
parent | 8f1b667df4d5dce7ae9d411f9a04144288941546 (diff) |
tzcode1999a from ftp://elsie.nci.nih.gov/pub
Diffstat (limited to 'lib/libc/time/private.h')
-rw-r--r-- | lib/libc/time/private.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libc/time/private.h b/lib/libc/time/private.h index 51c051bc866..cec18889859 100644 --- a/lib/libc/time/private.h +++ b/lib/libc/time/private.h @@ -1,5 +1,4 @@ -/* $OpenBSD: private.h,v 1.10 1998/01/23 19:33:51 millert Exp $ */ - +/* $OpenBSD: private.h,v 1.11 1999/01/29 07:04:05 d Exp $ */ #ifndef PRIVATE_H #define PRIVATE_H @@ -34,7 +33,7 @@ #if 0 #ifndef lint #ifndef NOID -static char privatehid[] = "@(#)private.h 7.46"; +static char privatehid[] = "@(#)private.h 7.48"; #endif /* !defined NOID */ #endif /* !defined lint */ #endif @@ -60,6 +59,10 @@ static char privatehid[] = "@(#)private.h 7.46"; #define HAVE_STRERROR 0 #endif /* !defined HAVE_STRERROR */ +#ifndef HAVE_SYMLINK +#define HAVE_SYMLINK 1 +#endif /* !defined HAVE_SYMLINK */ + #ifndef HAVE_UNISTD_H #define HAVE_UNISTD_H 1 #endif /* !defined HAVE_UNISTD_H */ @@ -231,7 +234,7 @@ char * scheck P((const char *string, const char *format)); ** add one more for a minus sign if the type is signed. */ #define INT_STRLEN_MAXIMUM(type) \ - ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 100 + 1 + TYPE_SIGNED(type)) + ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type)) #endif /* !defined INT_STRLEN_MAXIMUM */ /* |