aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-08-11 00:40:10 +0000
committerRichard M. Stallman <[email protected]>1995-08-11 00:40:10 +0000
commitee803128195bc2ae6fd22991aa2c42a459501df0 (patch)
tree4b73129e6307dc3f8a8df67115646fa0bb18cf32 /src
parent64b8f99be6711acb4480e4b8b0742f528877add8 (diff)
[linux] (COFF, NO_TERMIO): Defined.
[linux] (TEXT_END, DATA_END): New definitions.
Diffstat (limited to 'src')
-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 41f1b11764..2188fefff5 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