]> git.eshelyaron.com Git - emacs.git/commitdiff
[linux] (COFF, NO_TERMIO): Defined.
authorRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 00:40:10 +0000 (00:40 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 00:40:10 +0000 (00:40 +0000)
[linux] (TEXT_END, DATA_END): New definitions.

src/m/alpha.h

index 41f1b11764812bc46b37e29b2950301b41b3d145..2188fefff53c93d43b28e0761ce906bb6128255b 100644 (file)
@@ -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