diff options
| author | Richard M. Stallman | 1995-08-11 23:47:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-11 23:47:16 +0000 |
| commit | 3a0b426081a0f660238e063efdc482682efbb5f9 (patch) | |
| tree | 39eb913a6b2b06bf902e5e741dc49fbd6afd2bea /src | |
| parent | 1596f1c9f7c2d8e206598f902fd1ed44e3b91ae9 (diff) | |
| download | emacs-3a0b426081a0f660238e063efdc482682efbb5f9.tar.gz emacs-3a0b426081a0f660238e063efdc482682efbb5f9.zip | |
(TEXT_END, DATA_END): Fix the definitions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/alpha.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m/alpha.h b/src/m/alpha.h index a54585d3a5d..459a00d8181 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h | |||
| @@ -284,6 +284,6 @@ extern void r_alloc_free (); | |||
| 284 | simultaneously. */ | 284 | simultaneously. */ |
| 285 | #define NO_TERMIO | 285 | #define NO_TERMIO |
| 286 | 286 | ||
| 287 | #define TEXT_END ({ extern int _etext; _etext; }) | 287 | #define TEXT_END ({ extern int _etext; &_etext; }) |
| 288 | #define DATA_END ({ extern int _EDATA; _EDATA; }) | 288 | #define DATA_END ({ extern int _EDATA; &_EDATA; }) |
| 289 | #endif | 289 | #endif |