diff options
Diffstat (limited to 'hurd/hurdmalloc.c')
-rw-r--r-- | hurd/hurdmalloc.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/hurd/hurdmalloc.c b/hurd/hurdmalloc.c index 071abeb718..58c29fa07d 100644 --- a/hurd/hurdmalloc.c +++ b/hurd/hurdmalloc.c @@ -202,8 +202,7 @@ more_memory(int size, free_list_t fl) /* Declaration changed to standard one for GNU. */ void * -malloc(size) - size_t size; +malloc (size_t size) { int i, n; free_list_t fl; @@ -269,8 +268,7 @@ malloc(size) /* Declaration changed to standard one for GNU. */ void -free(base) - void *base; +free (void *base) { header_t h; free_list_t fl; @@ -318,9 +316,7 @@ free(base) /* Declaration changed to standard one for GNU. */ void * -realloc(old_base, new_size) - void *old_base; - size_t new_size; +realloc (void *old_base, size_t new_size) { header_t h; free_list_t fl; |