Move stddef.h include from sh.h to the file that uses it.
authormmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 14:43:46 +0000 (14:43 +0000)
committermmcc <mmcc@openbsd.org>
Mon, 19 Oct 2015 14:43:46 +0000 (14:43 +0000)
ok nicm@

bin/ksh/sh.h
bin/ksh/table.c

index 488b8bd..b95a8b7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sh.h,v 1.43 2015/10/19 14:42:16 mmcc Exp $    */
+/*     $OpenBSD: sh.h,v 1.44 2015/10/19 14:43:46 mmcc Exp $    */
 
 /*
  * Public Domain Bourne/Korn shell
@@ -14,7 +14,6 @@
 #include <sys/types.h>
 #include <setjmp.h>
 #include <stdbool.h>
-#include <stddef.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdarg.h>
index 6f4d08b..b0c508b 100644 (file)
@@ -1,10 +1,11 @@
-/*     $OpenBSD: table.c,v 1.21 2015/10/19 14:42:16 mmcc Exp $ */
+/*     $OpenBSD: table.c,v 1.22 2015/10/19 14:43:46 mmcc Exp $ */
 
 /*
  * dynamic hashed associative table for commands and variables
  */
 
 #include <limits.h>
+#include <stddef.h>
 #include <string.h>
 
 #include "sh.h"