summaryrefslogtreecommitdiff
path: root/misc/brk.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/brk.c')
-rw-r--r--misc/brk.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/brk.c b/misc/brk.c
index 28c4203399..76bd1b740d 100644
--- a/misc/brk.c
+++ b/misc/brk.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -24,8 +24,7 @@ void *__curbrk;
/* Set the end of the process's data space to ADDR.
Return 0 if successful, -1 if not. */
int
-__brk (addr)
- void *addr;
+__brk (void *addr)
{
__set_errno (ENOSYS);
return -1;