diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-09 02:52:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-09 02:52:02 +0000 |
commit | 9e0e925ea09dd30e21f09ac1bb603109f287c21f (patch) | |
tree | a4a48e5c198ce0f5b5d099245451e2c909b66638 | |
parent | 5e93d35f9dedb1687ee56f8ffd735e8668c0a871 (diff) | |
download | emacs-9e0e925ea09dd30e21f09ac1bb603109f287c21f.tar.gz |
Initial revision
-rw-r--r-- | src/s/ptx4.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/s/ptx4.h b/src/s/ptx4.h new file mode 100644 index 00000000000..e3d660b0663 --- /dev/null +++ b/src/s/ptx4.h @@ -0,0 +1,14 @@ +/* s/ file for Sequent "ptx 4", which is a modified SVR5.4. */ + +#include <s/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 + wrong thing. */ +#undef SIGINFO + +/* 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 |