diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/alpha.h | 10 |
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 | ||