aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/realloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/realloc.c')
-rw-r--r--newlib/libc/stdlib/realloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/realloc.c b/newlib/libc/stdlib/realloc.c
index 00a88a5..999e8e0 100644
--- a/newlib/libc/stdlib/realloc.c
+++ b/newlib/libc/stdlib/realloc.c
@@ -11,8 +11,7 @@ int _dummy_realloc = 1;
#ifndef _REENT_ONLY
void *
-_DEFUN (realloc, (ap, nbytes),
- void *ap,
+realloc (void *ap,
size_t nbytes)
{
return _realloc_r (_REENT, ap, nbytes);