diff options
| author | Joseph Arceneaux | 1992-06-30 22:41:21 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-06-30 22:41:21 +0000 |
| commit | 94d7c01aae32fcedca09c23baa0cf4d02f177455 (patch) | |
| tree | 5ff54e61362537e19b03ef4436c24adad96a33d8 /src/mem-limits.h | |
| parent | d8cafeb502e38d57a368708031d96cab3a8f58e6 (diff) | |
| download | emacs-94d7c01aae32fcedca09c23baa0cf4d02f177455.tar.gz emacs-94d7c01aae32fcedca09c23baa0cf4d02f177455.zip | |
entered into RCS
Diffstat (limited to 'src/mem-limits.h')
| -rw-r--r-- | src/mem-limits.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem-limits.h b/src/mem-limits.h index fe310542f2c..172f5dd1df1 100644 --- a/src/mem-limits.h +++ b/src/mem-limits.h | |||
| @@ -44,14 +44,17 @@ typedef unsigned long SIZE; | |||
| 44 | 44 | ||
| 45 | #ifdef emacs | 45 | #ifdef emacs |
| 46 | extern POINTER start_of_data (); | 46 | extern POINTER start_of_data (); |
| 47 | #define EXCEEDS_ELISP_PTR(ptr) ((unsigned int) (ptr) >> VALBITS) | ||
| 47 | 48 | ||
| 48 | #ifdef BSD | 49 | #ifdef BSD |
| 49 | #ifndef DATA_SEG_BITS | 50 | #ifndef DATA_SEG_BITS |
| 51 | extern char etext; | ||
| 50 | #define start_of_data() &etext | 52 | #define start_of_data() &etext |
| 51 | #endif | 53 | #endif |
| 52 | #endif | 54 | #endif |
| 53 | 55 | ||
| 54 | #else /* Not emacs */ | 56 | #else /* Not emacs */ |
| 57 | extern char etext; | ||
| 55 | #define start_of_data() &etext | 58 | #define start_of_data() &etext |
| 56 | #endif /* Not emacs */ | 59 | #endif /* Not emacs */ |
| 57 | 60 | ||