comparison src/mem-limits.h @ 12216:1072f05f6561

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 14 Jun 1995 14:21:09 +0000
parents 9cba6f0d9cd7
children c011026c071d
comparison
equal deleted inserted replaced
12215:2f1f03964f08 12216:1072f05f6561
30 #define BSD4_2 /* Tell code below to use getrlimit. */ 30 #define BSD4_2 /* Tell code below to use getrlimit. */
31 31
32 extern int __data_start; 32 extern int __data_start;
33 #define start_of_data() &__data_start 33 #define start_of_data() &__data_start
34 34
35 #else 35 #else /* not _LIBC */
36 36
37 #if defined (__osf__) && (defined (__mips) || defined (mips) || defined(__alpha)) 37 #if defined (__osf__) && (defined (__mips) || defined (mips) || defined(__alpha))
38 #include <sys/time.h> 38 #include <sys/time.h>
39 #include <sys/resource.h> 39 #include <sys/resource.h>
40 #endif 40 #endif
86 extern char etext; 86 extern char etext;
87 #define start_of_data() &etext 87 #define start_of_data() &etext
88 #endif 88 #endif
89 #endif 89 #endif
90 90
91 #else /* Not emacs */ 91 #else /* not emacs */
92 extern char etext; 92 extern char etext;
93 #define start_of_data() &etext 93 #define start_of_data() &etext
94 #endif /* Not emacs */ 94 #endif /* not emacs */
95 95
96 #endif /* _LIBC */ 96 #endif /* not _LIBC */
97 97
98 98
99 /* start of data space; can be changed by calling malloc_init */ 99 /* start of data space; can be changed by calling malloc_init */
100 static POINTER data_space_start; 100 static POINTER data_space_start;
101 101