comparison src/s/netbsd.h @ 5901:0377de94724d

(SYSV_SYSTEM_DIR): Define. (BROKEN_START, TEXT_START, START_FILES, UNEXEC, RUN_TIME_REMAP): Define to use unexsunos4. (N_PAGSIZ, N_BSSSADDR, N_TRELOFF): Define so unexsunos4.c compiles.
author Roland McGrath <roland@gnu.org>
date Fri, 11 Feb 1994 17:32:57 +0000
parents 37ea8707b175
children 916cd5156aed
comparison
equal deleted inserted replaced
5900:284c0d70a50a 5901:0377de94724d
28 28
29 /* For mem-limits.h. */ 29 /* For mem-limits.h. */
30 #define BSD4_2 30 #define BSD4_2
31 31
32 #define TERMCAP_NAME "/usr/share/misc/termcap" 32 #define TERMCAP_NAME "/usr/share/misc/termcap"
33
34 #define SYSV_SYSTEM_DIR
35
36 /* These definitions should work for either dynamic or static linking,
37 whichever is the default for `cc -nostdlib'. */
38 #define BROKEN_START
39 #define TEXT_START ({ extern void start() asm ("start"); &start; })
40 #define START_FILES pre-crt0.o /usr/lib/crt0.o
41 #define UNEXEC unexsunos4.o
42 #define RUN_TIME_REMAP
43 #define N_PAGSIZ(x) __LDPGSZ
44 #define N_BSSADDR(x) (N_ALIGN(x, N_DATADDR(x)+x.a_data))
45 #define N_TRELOFF(x) N_RELOFF(x)