comparison src/vm-limit.c @ 1417:3a1576d52874

(check_memory_limits): Declare __morecore. Remove unused variable `result'.
author Roland McGrath <roland@gnu.org>
date Thu, 15 Oct 1992 23:44:00 +0000
parents 60bb5e719468
children cecc2b59e875
comparison
equal deleted inserted replaced
1416:60bb5e719468 1417:3a1576d52874
47 /* Get more memory space, complaining if we're near the end. */ 47 /* Get more memory space, complaining if we're near the end. */
48 48
49 static void 49 static void
50 check_memory_limits () 50 check_memory_limits ()
51 { 51 {
52 POINTER result; 52 extern POINTER (*__morecore) ();
53
53 register POINTER cp; 54 register POINTER cp;
54 int five_percent; 55 int five_percent;
55 int data_size; 56 int data_size;
56 57
57 if (lim_data == 0) 58 if (lim_data == 0)