Mercurial > emacs
diff src/mem-limits.h @ 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 | 261bf09dc10a |
| children | 3f019f2a13f9 |
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 */
