diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2022-08-25 13:32:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2022-08-25 13:32:14 +0000 |
commit | f36d400cbc35697b6098b488defb55e8d8bd5535 (patch) | |
tree | e66fc4915103e3c0d476959239b45c02230de914 /lib/libc/time | |
parent | c5980f0058d68c210f3f3706f09c215d2f565bbb (diff) |
No need to include float.h anymore.
Diffstat (limited to 'lib/libc/time')
-rw-r--r-- | lib/libc/time/localtime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/time/localtime.c b/lib/libc/time/localtime.c index 2fb277dee22..f5e1da63540 100644 --- a/lib/libc/time/localtime.c +++ b/lib/libc/time/localtime.c @@ -1,4 +1,4 @@ -/* $OpenBSD: localtime.c,v 1.61 2019/06/28 13:32:42 deraadt Exp $ */ +/* $OpenBSD: localtime.c,v 1.62 2022/08/25 13:32:13 millert Exp $ */ /* ** This file is in the public domain, so clarified as of ** 1996-06-05 by Arthur David Olson. @@ -12,7 +12,6 @@ #include <ctype.h> #include <errno.h> #include <fcntl.h> -#include <float.h> /* for FLT_MAX and DBL_MAX */ #include <stdint.h> #include <stdlib.h> #include <string.h> |