aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/nls
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2002-10-27 17:44:33 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2002-10-27 17:44:33 +0000
commit688dfe4533bf3e4087fd3d229282b4ba19cf0216 (patch)
treec515d191c45e241621123bbd9bbb4eb3a4ca7a1a /lib/libc/nls
parentcfe6d7e9130bee5de0e6808fbb71764c60a80a52 (diff)
downloadsrc-688dfe4533bf3e4087fd3d229282b4ba19cf0216.tar.gz
src-688dfe4533bf3e4087fd3d229282b4ba19cf0216.zip
Do not include <sys/syslimits.h> directly; it is not intended for general
consumption.
Notes
Notes: svn path=/head/; revision=106053
Diffstat (limited to 'lib/libc/nls')
-rw-r--r--lib/libc/nls/msgcat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/nls/msgcat.c b/lib/libc/nls/msgcat.c
index 2b80d914ba18..4d446184eafd 100644
--- a/lib/libc/nls/msgcat.c
+++ b/lib/libc/nls/msgcat.c
@@ -41,9 +41,10 @@ __FBSDID("$FreeBSD$");
#include "namespace.h"
#include <sys/types.h>
#include <sys/stat.h>
-#include <sys/syslimits.h>
+
#include <errno.h>
#include <fcntl.h>
+#include <limits.h>
#include <locale.h>
#include <nl_types.h>
#include <stdio.h>