diff options
author | 1996-09-25 13:19:01 +0000 | |
---|---|---|
committer | 1996-09-25 13:19:01 +0000 | |
commit | 4a0968cfbbc60568a2b2cc6aa018c9251e3d4575 (patch) | |
tree | ff7929dfca7a1a6ae1f3a9ff73ad37bdb3358c17 /lib/libc/string/__strsignal.c | |
parent | prefer DOSPTYP_386BSD MBR partition; from tholo (diff) | |
download | wireguard-openbsd-4a0968cfbbc60568a2b2cc6aa018c9251e3d4575.tar.xz wireguard-openbsd-4a0968cfbbc60568a2b2cc6aa018c9251e3d4575.zip |
need limits.h
Diffstat (limited to 'lib/libc/string/__strsignal.c')
-rw-r--r-- | lib/libc/string/__strsignal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/__strsignal.c b/lib/libc/string/__strsignal.c index 53c9e59e59f..ae0df72cd36 100644 --- a/lib/libc/string/__strsignal.c +++ b/lib/libc/string/__strsignal.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: __strsignal.c,v 1.4 1996/09/25 08:17:31 deraadt Exp $"; +static char *rcsid = "$OpenBSD: __strsignal.c,v 1.5 1996/09/25 13:19:01 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #ifdef NLS @@ -45,6 +45,7 @@ static char *rcsid = "$OpenBSD: __strsignal.c,v 1.4 1996/09/25 08:17:31 deraadt #define sys_siglist _sys_siglist #include <stdio.h> +#include <limits.h> #include <signal.h> #include <string.h> |