comparison src/m/convex.h @ 6969:7cf053b348f1

(CRT0_DUMMIES): Ignore one arg. (LIBS_TERMCAP): Use the system's termcap.
author Richard M. Stallman <rms@gnu.org>
date Tue, 19 Apr 1994 23:09:41 +0000
parents 50216826c507
children cd81dba38a49
comparison
equal deleted inserted replaced
6968:20acd87f9180 6969:7cf053b348f1
55 /* Use type int rather than a union, to represent Lisp_Object */ 55 /* Use type int rather than a union, to represent Lisp_Object */
56 /* This is desirable for most machines. */ 56 /* This is desirable for most machines. */
57 57
58 #define NO_UNION_TYPE 58 #define NO_UNION_TYPE
59 59
60 /* crt0.c should use the vax-bsd style of entry, with no dummy args. */ 60 /* crt0.c should use the vax-bsd style of entry.
61 Ralph Sobek <Ralph.Sobek@cerfacs.fr> says must ignore one arg. */
61 62
62 #define CRT0_DUMMIES 63 #define CRT0_DUMMIES ignore,
63 64
64 /* crt0.c should define a symbol `start' and do .globl with a dot. */ 65 /* crt0.c should define a symbol `start' and do .globl with a dot. */
65 66
66 #define DOT_GLOBAL_START 67 #define DOT_GLOBAL_START
67 68
93 Define HAVE_ALLOCA to say that the system provides a properly 94 Define HAVE_ALLOCA to say that the system provides a properly
94 working alloca function and it should be used. 95 working alloca function and it should be used.
95 Define neither one if an assembler-language alloca 96 Define neither one if an assembler-language alloca
96 in the file alloca.s should be used. */ 97 in the file alloca.s should be used. */
97 98
98 /*#define C_ALLOCA*/ 99 /* #define C_ALLOCA */
99 #define HAVE_ALLOCA 100 #define HAVE_ALLOCA
100 101
102 /* Must use the system's termcap. It does special things. */
103
104 #define LIBS_TERMCAP -ltermcap
105
101 /* Define NO_REMAP if memory segmentation makes it not work well 106 /* Define NO_REMAP if memory segmentation makes it not work well
102 to change the boundary between the text section and data section 107 to change the boundary between the text section and data section
103 when Emacs is dumped. If you define this, the preloaded Lisp 108 when Emacs is dumped. If you define this, the preloaded Lisp
104 code will not be sharable; but that's better than failing completely. */ 109 code will not be sharable; but that's better than failing completely. */
105 110