mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 23:31:55 -08:00
(get_lim_data): Handle NO_LIM_DATA.
This commit is contained in:
parent
5afe3a2b9c
commit
19b8fb9d76
1 changed files with 9 additions and 0 deletions
|
|
@ -98,6 +98,14 @@ static POINTER data_space_start;
|
|||
/* 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 @@ get_lim_data ()
|
|||
}
|
||||
#endif /* BSD4_2 */
|
||||
#endif /* not USG */
|
||||
#endif /* not NO_LIM_DATA */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue