aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/arith_yacc.c
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@FreeBSD.org>2011-06-26 20:12:05 +0000
committerJilles Tjoelker <jilles@FreeBSD.org>2011-06-26 20:12:05 +0000
commit4004e05e8a99fe4b781285956e572feb42cd6860 (patch)
treef3f80ff1d8613315f07e6a88fb22e48ffa4ee6ad /bin/sh/arith_yacc.c
parent4b9414ab9204b77d922f5c44abecc67eabe3a902 (diff)
downloadsrc-4004e05e8a99fe4b781285956e572feb42cd6860.tar.gz
src-4004e05e8a99fe4b781285956e572feb42cd6860.zip
sh: Include <limits.h> instead of non-standard <sys/limits.h>.
Notes
Notes: svn path=/head/; revision=223580
Diffstat (limited to 'bin/sh/arith_yacc.c')
-rw-r--r--bin/sh/arith_yacc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/arith_yacc.c b/bin/sh/arith_yacc.c
index f1ac59e8e440..041e638211ef 100644
--- a/bin/sh/arith_yacc.c
+++ b/bin/sh/arith_yacc.c
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/limits.h>
+#include <limits.h>
#include <errno.h>
#include <inttypes.h>
#include <stdlib.h>