Mercurial > hg > xemacs-beta
comparison src/lastfile.c @ 448:3078fd1074e8 r21-2-39
Import from CVS: tag r21-2-39
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:38:25 +0200 |
parents | 3ecd8885ac67 |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
447:4fc5f13f3bd3 | 448:3078fd1074e8 |
---|---|
36 As a result, the symbol my_edata indicates the point | 36 As a result, the symbol my_edata indicates the point |
37 in data space between data coming from Emacs and data | 37 in data space between data coming from Emacs and data |
38 coming from libraries. | 38 coming from libraries. |
39 */ | 39 */ |
40 | 40 |
41 #include <config.h> | |
42 | |
41 char my_edata[] = "End of Emacs initialized data"; | 43 char my_edata[] = "End of Emacs initialized data"; |
42 | 44 |
43 int my_ebss; | 45 /* Ensure there is enough slack in the .bss to pad with. */ |
46 #ifdef HEAP_IN_DATA | |
47 #define BSS_PADDING 0x1000 | |
48 #else | |
49 #define BSS_PADDING 1 | |
50 #endif | |
51 | |
52 char my_ebss [BSS_PADDING]; | |
53 |