diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-02-17 21:47:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-02-17 21:47:20 +0000 |
commit | 30f354965e7a2e2cd3d84d69247aa6462d5ee146 (patch) | |
tree | d65c775297cdb6c7e3518fd983fe065a235eb22c /usr.bin | |
parent | 1232f23b762f38894dceecbc183d9a2f5ceacae4 (diff) |
Missing #include <limits.h>
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/at/at.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index fb4d280a8d4..1b7c7515761 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -1,4 +1,4 @@ -/* $OpenBSD: at.c,v 1.32 2003/01/02 15:48:40 mpech Exp $ */ +/* $OpenBSD: at.c,v 1.33 2003/02/17 21:47:19 millert Exp $ */ /* $NetBSD: at.c,v 1.4 1995/03/25 18:13:31 glass Exp $ */ /* @@ -43,6 +43,7 @@ #include <err.h> #include <errno.h> #include <fcntl.h> +#include <limits.h> #include <locale.h> #include <pwd.h> #include <signal.h> @@ -73,7 +74,7 @@ #define TIMESIZE 50 /* Size of buffer passed to strftime() */ #ifndef lint -static const char rcsid[] = "$OpenBSD: at.c,v 1.32 2003/01/02 15:48:40 mpech Exp $"; +static const char rcsid[] = "$OpenBSD: at.c,v 1.33 2003/02/17 21:47:19 millert Exp $"; #endif /* Variables to remove from the job's environment. */ |