aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorAlexey Zelkin <phantom@FreeBSD.org>2005-02-27 21:17:22 +0000
committerAlexey Zelkin <phantom@FreeBSD.org>2005-02-27 21:17:22 +0000
commitfc7c35283172dbed0e31df879b3586088c73403f (patch)
tree2455b3abd93d3f53671fd58fd997c4ce3c8f03f8 /lib/libc/string
parent7ce296cf0466d691442ed9a35c51ffdf779893ef (diff)
Unbreak !NLS case
Notes
Notes: svn path=/head/; revision=142693
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/strerror.c2
-rw-r--r--lib/libc/string/strsignal.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c
index 30894aab4aca..38a484f724d0 100644
--- a/lib/libc/string/strerror.c
+++ b/lib/libc/string/strerror.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 <stdio.h>
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>