diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-13 15:27:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-13 15:27:23 +0000 |
commit | 59bbfe45b8f4c40b754b4e3c38d627048665846a (patch) | |
tree | 6e5077bff0d12d9c390601aa5400aaae8e2b1a69 | |
parent | 6dd253337668fcf8495c90b8fab67a7e5b7ca0d2 (diff) | |
download | emacs-59bbfe45b8f4c40b754b4e3c38d627048665846a.tar.gz |
Fix include file name.
(NO_FILIO_H): Move definition.
-rw-r--r-- | src/s/ptx4.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/s/ptx4.h b/src/s/ptx4.h index e3d660b0663..3042c0a8d82 100644 --- a/src/s/ptx4.h +++ b/src/s/ptx4.h @@ -1,6 +1,9 @@ /* s/ file for Sequent "ptx 4", which is a modified SVR5.4. */ -#include <s/usg5-4.h> +/* Tell usg5-4.h not to include filio.h. */ +#define NO_FILIO_H + +#include "usg5-4.h" /* Marcus Daniels <marcus@sysc.pdx.edu> says that SIGINFO is defined on ptx4 but it is not a signal. Prevent process.c from doing the @@ -10,5 +13,3 @@ /* Marcus Daniels <marcus@sysc.pdx.edu> says vfork does exist. */ #define HAVE_VFORK -/* Tell usg5-4.h not to include filio.h. */ -#define NO_FILIO_H |