aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1992-09-12 07:45:15 +0000
committerRichard M. Stallman1992-09-12 07:45:15 +0000
commit2102829e7dbe763be7d14851cc811ccaafcdcb60 (patch)
treeb022aa784181b2b96c6895463fc7decc41395a20 /src
parent07a784100e19b3408060fa684c094312884c7534 (diff)
downloademacs-2102829e7dbe763be7d14851cc811ccaafcdcb60.tar.gz
emacs-2102829e7dbe763be7d14851cc811ccaafcdcb60.zip
entered into RCS
Diffstat (limited to 'src')
-rw-r--r--src/s/esix5r4.h10
-rw-r--r--src/systty.h14
2 files changed, 24 insertions, 0 deletions
diff --git a/src/s/esix5r4.h b/src/s/esix5r4.h
new file mode 100644
index 00000000000..124c9fa8b88
--- /dev/null
+++ b/src/s/esix5r4.h
@@ -0,0 +1,10 @@
1/* Definitions for ESIX System V 4.0.4, a variant of V.4 for the 386. */
2
3#include "usg5-4.h"
4
5#define LIB_X11_LIB -lsocket -lc -lX11
6#undef LIB_STANDARD
7#define LIB_STANDARD -lnsl -lns -lelf /usr/ucblib/libucb.a /usr/ccs/lib/crtn.o
8
9/* Resolve BSD string functions in X Window library from libucb.a. */
10#define BSTRING
diff --git a/src/systty.h b/src/systty.h
index 186d3edff80..0fd9e371155 100644
--- a/src/systty.h
+++ b/src/systty.h
@@ -107,6 +107,20 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
107#endif 107#endif
108 108
109 109
110/* Try to establish the correct character to disable terminal functions
111 in a system-independent manner. Note that USG (at least) define
112 _POSIX_VDISABLE as 0! */
113
114#ifdef _POSIX_VDISABLE
115#define CDISABLE _POSIX_VDISABLE
116#else /* not _POSIX_VDISABLE */
117#ifdef CDEL
118#define CDISABLE CDEL
119#else /* not CDEL */
120#define CDISABLE 255
121#endif /* not CDEL */
122#endif /* not _POSIX_VDISABLE */
123
110/* Get the number of characters queued for output. */ 124/* Get the number of characters queued for output. */
111 125
112/* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters 126/* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters