From ee803128195bc2ae6fd22991aa2c42a459501df0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 11 Aug 1995 00:40:10 +0000 Subject: [PATCH] [linux] (COFF, NO_TERMIO): Defined. [linux] (TEXT_END, DATA_END): New definitions. --- src/m/alpha.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/m/alpha.h b/src/m/alpha.h index 41f1b117648..2188fefff53 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h @@ -276,3 +276,13 @@ extern void r_alloc_free (); 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 -- 2.39.2