Mercurial > emacs
changeset 7010:34c91bb33ed0
(get_lim_data): Handle NO_LIM_DATA.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 21 Apr 1994 18:53:38 +0000 |
parents | 9fb9491fb9a4 |
children | a8fe822b48dc |
files | src/mem-limits.h |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/mem-limits.h Thu Apr 21 18:45:15 1994 +0000 +++ b/src/mem-limits.h Thu Apr 21 18:53:38 1994 +0000 @@ -98,6 +98,14 @@ /* Number of bytes of writable memory we can expect to be able to get */ static unsigned int lim_data; +#ifdef NO_LIM_DATA +static void +get_lim_data () +{ + lim_data = -1; +} +#else /* not NO_LIM_DATA */ + #ifdef USG static void @@ -157,3 +165,4 @@ } #endif /* BSD4_2 */ #endif /* not USG */ +#endif /* not NO_LIM_DATA */