diff options
| author | Geoff Voelker | 1998-04-17 05:25:35 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-04-17 05:25:35 +0000 |
| commit | 4a3bf56545387aeb68c6f26938ae6c72028597b5 (patch) | |
| tree | de996aeb9deb7890610df428bcd8a67618c68eb0 /src | |
| parent | 074a066b07f454ac79e3bee55d0ca176fea6b323 (diff) | |
| download | emacs-4a3bf56545387aeb68c6f26938ae6c72028597b5.tar.gz emacs-4a3bf56545387aeb68c6f26938ae6c72028597b5.zip | |
* lastfile.c (_my_endbss, my_endbss_static): New variables.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lastfile.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lastfile.c b/src/lastfile.c index 6c4320028f2..f720259e6f4 100644 --- a/src/lastfile.c +++ b/src/lastfile.c | |||
| @@ -44,3 +44,8 @@ char my_edata[] = "End of Emacs initialized data"; | |||
| 44 | isn't always a separate section in NT executables). */ | 44 | isn't always a separate section in NT executables). */ |
| 45 | char my_endbss[1]; | 45 | char my_endbss[1]; |
| 46 | #endif | 46 | #endif |
| 47 | /* The Alpha MSVC linker globally segregates all static and public bss | ||
| 48 | data, so we must take both into account to determine the true extent | ||
| 49 | of the bss area used by Emacs. */ | ||
| 50 | static char _my_endbss[1]; | ||
| 51 | char * my_endbss_static = _my_endbss; | ||