# HG changeset patch # User Richard M. Stallman # Date 808101610 0 # Node ID b0f8f54fe7397f2fc0fe85828c44a211c8eec00d # Parent 1aad581760b913e51b50bea52c2511bf8e55aff0 [linux] (COFF, NO_TERMIO): Defined. [linux] (TEXT_END, DATA_END): New definitions. diff -r 1aad581760b9 -r b0f8f54fe739 src/m/alpha.h --- a/src/m/alpha.h Fri Aug 11 00:26:22 1995 +0000 +++ b/src/m/alpha.h Fri Aug 11 00:40:10 1995 +0000 @@ -276,3 +276,13 @@ close (dummy); \ } \ while (0) + +#ifdef linux +#define COFF +/* Linux/Alpha doesn't like it if termio.h and termios.h get included + simultaneously. */ +#define NO_TERMIO + +#define TEXT_END ({ extern int _etext; _etext; }) +#define DATA_END ({ extern int _EDATA; _EDATA; }) +#endif