diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2011-07-19 07:23:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2011-07-19 07:23:09 +0000 |
commit | c9c2b42229bf74a7d482b09792562a15c6a690a7 (patch) | |
tree | ba5dbc9bc6bc3222b4f98790c22fcf765abf1d50 /newlib/libc/reent | |
parent | 7ec669539f63d02defeba9cb60f9ada265e9c64a (diff) | |
download | newlib-c9c2b42229bf74a7d482b09792562a15c6a690a7.zip newlib-c9c2b42229bf74a7d482b09792562a15c6a690a7.tar.gz newlib-c9c2b42229bf74a7d482b09792562a15c6a690a7.tar.bz2 |
* libc/reent/sbrkr.c: Define _sbrk_r independently of the definition
of MALLOC_PROVIDED.
Diffstat (limited to 'newlib/libc/reent')
-rw-r--r-- | newlib/libc/reent/sbrkr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/newlib/libc/reent/sbrkr.c b/newlib/libc/reent/sbrkr.c index b963307..44e42b5 100644 --- a/newlib/libc/reent/sbrkr.c +++ b/newlib/libc/reent/sbrkr.c @@ -13,9 +13,7 @@ #endif #endif -/* If MALLOC_PROVIDED is defined, we don't need this function. */ - -#if defined (REENTRANT_SYSCALLS_PROVIDED) || defined (MALLOC_PROVIDED) +#if defined (REENTRANT_SYSCALLS_PROVIDED) int _dummy_sbrk_syscalls = 1; |