summaryrefslogtreecommitdiff
path: root/hurd/hurdmalloc.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-10-09 20:15:32 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-10-09 20:15:32 +0200
commitcbe8b6f603fbea1d64e3570f299a2bf25adfa6fc (patch)
treea62a92aded65b2e0834a4d72701415ed3cca4299 /hurd/hurdmalloc.c
parentd6a8ab3c9097ce211e9aa7780ddd31b4f62d380f (diff)
parent0b113e90a20146a2783f7cb2f3e7de716b892d5f (diff)
Merge branch 't/tls' into refs/top-bases/tschwinge/Roger_Whittaker
Diffstat (limited to 'hurd/hurdmalloc.c')
-rw-r--r--hurd/hurdmalloc.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/hurd/hurdmalloc.c b/hurd/hurdmalloc.c
index 2b5ad6e129..65fb959d84 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;