Move limits.h include from sh.h to the files that actually need it. No
authormmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 14:03:21 +0000 (14:03 +0000)
committermmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 14:03:21 +0000 (14:03 +0000)
binary change.

ok nicm@

bin/ksh/expr.c
bin/ksh/jobs.c
bin/ksh/misc.c
bin/ksh/sh.h
bin/ksh/shf.c
bin/ksh/table.c
bin/ksh/var.c

index 52e9965..d7bf29f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: expr.c,v 1.29 2015/10/19 02:15:45 mmcc Exp $  */
+/*     $OpenBSD: expr.c,v 1.30 2015/10/19 14:03:21 mmcc Exp $  */
 
 /*
  * Korn expression evaluation
@@ -8,6 +8,7 @@
  */
 
 #include <ctype.h>
+#include <limits.h>
 
 #include "sh.h"
 
index 15900b5..a929230 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: jobs.c,v 1.48 2015/10/19 02:15:45 mmcc Exp $  */
+/*     $OpenBSD: jobs.c,v 1.49 2015/10/19 14:03:21 mmcc Exp $  */
 
 /*
  * Process and job control
@@ -20,6 +20,8 @@
 #include <sys/time.h>
 #include <sys/wait.h>
 
+#include <limits.h>
+
 #include "sh.h"
 #include "tty.h"
 
index a9eecde..4d9af6b 100644 (file)
@@ -1,10 +1,11 @@
-/*     $OpenBSD: misc.c,v 1.47 2015/10/19 02:15:45 mmcc Exp $  */
+/*     $OpenBSD: misc.c,v 1.48 2015/10/19 14:03:21 mmcc Exp $  */
 
 /*
  * Miscellaneous functions
  */
 
 #include <ctype.h>
+#include <limits.h>
 
 #include "sh.h"
 #include "charclass.h"
index f2e59ff..2368567 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sh.h,v 1.41 2015/10/19 14:01:37 mmcc Exp $    */
+/*     $OpenBSD: sh.h,v 1.42 2015/10/19 14:03:21 mmcc Exp $    */
 
 /*
  * Public Domain Bourne/Korn shell
@@ -22,7 +22,6 @@
 
 #include <errno.h>
 #include <fcntl.h>
-#include <limits.h>
 
 #include <signal.h>
 
index f7d2285..2d032eb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: shf.c,v 1.23 2015/10/19 02:15:45 mmcc Exp $   */
+/*     $OpenBSD: shf.c,v 1.24 2015/10/19 14:03:21 mmcc Exp $   */
 
 /*
  *  Shell file I/O routines
@@ -6,6 +6,8 @@
 
 #include <sys/stat.h>
 
+#include <limits.h>
+
 #include "sh.h"
 
 /* flags to shf_emptybuf() */
index 2af57b4..d22eca0 100644 (file)
@@ -1,9 +1,11 @@
-/*     $OpenBSD: table.c,v 1.19 2015/10/05 23:26:58 nicm Exp $ */
+/*     $OpenBSD: table.c,v 1.20 2015/10/19 14:03:21 mmcc Exp $ */
 
 /*
  * dynamic hashed associative table for commands and variables
  */
 
+#include <limits.h>
+
 #include "sh.h"
 
 #define        INIT_TBLS       8       /* initial table size (power of 2) */
index 36853af..d177671 100644 (file)
@@ -1,8 +1,9 @@
-/*     $OpenBSD: var.c,v 1.51 2015/10/19 02:15:45 mmcc Exp $   */
+/*     $OpenBSD: var.c,v 1.52 2015/10/19 14:03:21 mmcc Exp $   */
 
 #include <sys/stat.h>
 
 #include <ctype.h>
+#include <limits.h>
 #include <time.h>
 
 #include "sh.h"