X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fmalloc.c;h=0fc31a006ee36eda6c2c01f3124b2a32c83e587e;hb=153c92fa2a3b77ce954a1e54a5dc9ec15370cfd6;hp=599110a8e5652a0d20b8bc82c5fc2f1b060841fb;hpb=3890a2e3064a7f562107c58e59d928284ec04741;p=chise%2Fxemacs-chise.git- diff --git a/src/malloc.c b/src/malloc.c index 599110a..0fc31a0 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -738,7 +738,7 @@ malloc_stats (size) return v; } int -malloc_mem_used () +malloc_mem_used (void) { int i; int size_used; @@ -757,7 +757,7 @@ malloc_mem_used () } int -malloc_mem_free () +malloc_mem_free (void) { int i; int size_unused; @@ -787,7 +787,7 @@ malloc_mem_free () #ifdef USG static void -get_lim_data () +get_lim_data (void) { #ifdef ULIMIT_BREAK_VALUE lim_data = ULIMIT_BREAK_VALUE; @@ -802,7 +802,7 @@ get_lim_data () #ifndef BSD4_2 static void -get_lim_data () +get_lim_data (void) { lim_data = vlimit (LIM_DATA, -1); } @@ -810,7 +810,7 @@ get_lim_data () #else /* BSD4_2 */ static void -get_lim_data () +get_lim_data (void) { struct rlimit XXrlimit;