summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/linux/brk.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/brk.c')
-rw-r--r--newlib/libc/sys/linux/brk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/sys/linux/brk.c b/newlib/libc/sys/linux/brk.c
index 87ebfe0e7..91bb367e7 100644
--- a/newlib/libc/sys/linux/brk.c
+++ b/newlib/libc/sys/linux/brk.c
@@ -28,7 +28,7 @@ int brk(void *end_data_segment)
}
-void *sbrk(size_t increment) /* SHOULD be ptrdiff_t */
+void *sbrk(ptrdiff_t increment) /* SHOULD be ptrdiff_t */
{
char *old_brk,*new_brk;