comparison src/m/alpha.h @ 12827:b0f8f54fe739

[linux] (COFF, NO_TERMIO): Defined. [linux] (TEXT_END, DATA_END): New definitions.
author Richard M. Stallman <rms@gnu.org>
date Fri, 11 Aug 1995 00:40:10 +0000
parents cbc13edaa77d
children 6e5c3dfa040c
comparison
equal deleted inserted replaced
12826:1aad581760b9 12827:b0f8f54fe739
274 if (-1 == openpty (&fd, &dummy, pty_name, 0, 0)) \ 274 if (-1 == openpty (&fd, &dummy, pty_name, 0, 0)) \
275 fd = -1; \ 275 fd = -1; \
276 close (dummy); \ 276 close (dummy); \
277 } \ 277 } \
278 while (0) 278 while (0)
279
280 #ifdef linux
281 #define COFF
282 /* Linux/Alpha doesn't like it if termio.h and termios.h get included
283 simultaneously. */
284 #define NO_TERMIO
285
286 #define TEXT_END ({ extern int _etext; _etext; })
287 #define DATA_END ({ extern int _EDATA; _EDATA; })
288 #endif