diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-08-04 11:03:20 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-08-04 11:03:20 +0000 |
| commit | dec5f6ac4229293ed9b4b292cb6d5baf2dc2138f (patch) | |
| tree | 543474c45cd36dac265c7002ad55a9c41bbf7cb9 /lib/libc | |
| parent | 683544bd3e0dbd73c247fdf38e687548ed7f9df5 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/stdtime/private.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdtime/private.h b/lib/libc/stdtime/private.h index d8fa9068e2b8..f1d7125244e2 100644 --- a/lib/libc/stdtime/private.h +++ b/lib/libc/stdtime/private.h @@ -1,3 +1,5 @@ +/* $FreeBSD$ */ + #ifndef PRIVATE_H #define PRIVATE_H @@ -166,7 +168,7 @@ static char privatehid[] = "@(#)private.h 7.43"; ** 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 */ /* |
