aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-11 00:40:10 +0000
committerRichard M. Stallman1995-08-11 00:40:10 +0000
commitee803128195bc2ae6fd22991aa2c42a459501df0 (patch)
tree4b73129e6307dc3f8a8df67115646fa0bb18cf32
parent64b8f99be6711acb4480e4b8b0742f528877add8 (diff)
downloademacs-ee803128195bc2ae6fd22991aa2c42a459501df0.tar.gz
emacs-ee803128195bc2ae6fd22991aa2c42a459501df0.zip
[linux] (COFF, NO_TERMIO): Defined.
[linux] (TEXT_END, DATA_END): New definitions.
-rw-r--r--src/m/alpha.h10
1 files changed, 10 insertions, 0 deletions
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 ();
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