Move a system header include from the global header (sh.h) into the
authormmcc <mmcc@openbsd.org>
Sat, 17 Oct 2015 18:26:24 +0000 (18:26 +0000)
committermmcc <mmcc@openbsd.org>
Sat, 17 Oct 2015 18:26:24 +0000 (18:26 +0000)
files that need it. No binary change.

"This looks fine" -nicm@

bin/ksh/exec.c
bin/ksh/main.c
bin/ksh/sh.h

index 809013b..09f64af 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: exec.c,v 1.57 2015/09/22 21:50:40 millert Exp $       */
+/*     $OpenBSD: exec.c,v 1.58 2015/10/17 18:26:24 mmcc Exp $  */
 
 /*
  * execute command tree
@@ -8,6 +8,7 @@
 #include "c_test.h"
 #include <ctype.h>
 #include <sys/stat.h>
+#include <paths.h>
 
 /* Does ps4 get parameter substitutions done? */
 # define PS4_SUBSTITUTE(s)     substitute((s), 0)
index 392de9f..b76d556 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.64 2015/10/16 14:45:16 deraadt Exp $       */
+/*     $OpenBSD: main.c,v 1.65 2015/10/17 18:26:24 mmcc Exp $  */
 
 /*
  * startup, main loop, environments and error handling
@@ -9,6 +9,7 @@
 #include "sh.h"
 #include <sys/stat.h>
 #include <pwd.h>
+#include <paths.h>
 
 extern char **environ;
 
index b0e332e..7d19db6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sh.h,v 1.37 2015/09/14 16:08:50 nicm Exp $    */
+/*     $OpenBSD: sh.h,v 1.38 2015/10/17 18:26:24 mmcc Exp $    */
 
 /*
  * Public Domain Bourne/Korn shell
@@ -26,8 +26,6 @@
 
 #include <signal.h>
 
-#include <paths.h>
-
 /* end of common headers */
 
 /* some useful #defines */