diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2005-02-27 21:17:22 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2005-02-27 21:17:22 +0000 |
commit | fc7c35283172dbed0e31df879b3586088c73403f (patch) | |
tree | 2455b3abd93d3f53671fd58fd997c4ce3c8f03f8 /lib/libc/string/strsignal.c | |
parent | 7ce296cf0466d691442ed9a35c51ffdf779893ef (diff) |
Unbreak !NLS case
Notes
Notes:
svn path=/head/; revision=142693
Diffstat (limited to 'lib/libc/string/strsignal.c')
-rw-r--r-- | lib/libc/string/strsignal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strsignal.c b/lib/libc/string/strsignal.c index ed8a6e6b5d00..82e2804031ff 100644 --- a/lib/libc/string/strsignal.c +++ b/lib/libc/string/strsignal.c @@ -38,10 +38,10 @@ static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; __FBSDID("$FreeBSD$"); #if defined(NLS) -#include <limits.h> #include <nl_types.h> #endif +#include <limits.h> #include <errno.h> #include <string.h> #include <signal.h> |