# HG changeset patch # User Richard M. Stallman # Date 766954418 0 # Node ID 34c91bb33ed043f83728cf74ef9ca8c8d3b8e0a2 # Parent 9fb9491fb9a4f28a81731e91d5cd50187f9b7d50 (get_lim_data): Handle NO_LIM_DATA. diff -r 9fb9491fb9a4 -r 34c91bb33ed0 src/mem-limits.h --- 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 */