Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/reent/sbrkr.c')
-rw-r--r--newlib/libc/reent/sbrkr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/reent/sbrkr.c b/newlib/libc/reent/sbrkr.c
index 8be82ddb1..b963307b6 100644
--- a/newlib/libc/reent/sbrkr.c
+++ b/newlib/libc/reent/sbrkr.c
@@ -49,9 +49,9 @@ DESCRIPTION
*/
void *
-_sbrk_r (ptr, incr)
- struct _reent *ptr;
- ptrdiff_t incr;
+_DEFUN (_sbrk_r, (ptr, incr),
+ struct _reent *ptr _AND
+ ptrdiff_t incr)
{
char *ret;
void *_sbrk(ptrdiff_t);