diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-11-10 16:42:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-11-10 16:42:06 +0000 |
commit | 1476682b7a82c7b287b103a72726534a1d66a794 (patch) | |
tree | 090f06d6cb952a31ed48280eb9d6c4519d4ee8e7 /src/s/usg5-4.h | |
parent | 0badae7bb040b5454a5ba30b462cdf0622e53c3b (diff) | |
download | emacs-1476682b7a82c7b287b103a72726534a1d66a794.tar.gz |
Always include sys/wait.h unless NOT_C_CODE;
don't test #ifdef emacs for that.
Diffstat (limited to 'src/s/usg5-4.h')
-rw-r--r-- | src/s/usg5-4.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index d6b87ec19ae..047ef10557a 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -78,12 +78,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ * interfere. And don't try to use SIGIO yet. */ +#ifndef NOT_C_CODE +#include <sys/wait.h> +#endif + #ifdef emacs #include <sys/filio.h> #include <termio.h> #include <sys/ttold.h> #include <signal.h> -#include <sys/wait.h> #include <sys/stream.h> #include <sys/stropts.h> #include <sys/termios.h> |