diff options
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/reent.h | 3 | ||||
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/newlib/libc/include/reent.h b/newlib/libc/include/reent.h index b54e4cbb8..8f1077920 100644 --- a/newlib/libc/include/reent.h +++ b/newlib/libc/include/reent.h @@ -50,6 +50,7 @@ extern "C" { #include <machine/types.h> #define __need_size_t +#define __need_ptrdiff_t #include <stddef.h> /* FIXME: not namespace clean */ @@ -71,7 +72,7 @@ extern int _link_r _PARAMS ((struct _reent *, const char *, const char *)); extern _off_t _lseek_r _PARAMS ((struct _reent *, int, _off_t, int)); extern int _open_r _PARAMS ((struct _reent *, const char *, int, int)); extern _ssize_t _read_r _PARAMS ((struct _reent *, int, void *, size_t)); -extern void *_sbrk_r _PARAMS ((struct _reent *, size_t)); +extern void *_sbrk_r _PARAMS ((struct _reent *, ptrdiff_t)); extern int _stat_r _PARAMS ((struct _reent *, const char *, struct stat *)); extern _CLOCK_T_ _times_r _PARAMS ((struct _reent *, struct tms *)); extern int _unlink_r _PARAMS ((struct _reent *, const char *)); diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index 1565bf0f8..d6ff2500a 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -91,11 +91,7 @@ int _EXFUN(rmdir, (const char *__path )); #if defined(__CYGWIN__) int _EXFUN(ruserok, (const char *rhost, int superuser, const char *ruser, const char *luser)); #endif -#if defined(__rtems__) void * _EXFUN(sbrk, (ptrdiff_t __incr)); -#else -void * _EXFUN(sbrk, (size_t __incr)); -#endif #if defined(__CYGWIN__) int _EXFUN(setegid, (gid_t __gid )); int _EXFUN(seteuid, (uid_t __uid )); @@ -141,7 +137,7 @@ pid_t _EXFUN(_getpid, (void )); int _EXFUN(_link, (const char *__path1, const char *__path2 )); off_t _EXFUN(_lseek, (int __fildes, off_t __offset, int __whence )); _READ_WRITE_RETURN_TYPE _EXFUN(_read, (int __fd, void *__buf, size_t __nbyte )); -void * _EXFUN(_sbrk, (size_t __incr)); +void * _EXFUN(_sbrk, (ptrdiff_t __incr)); int _EXFUN(_unlink, (const char *__path )); _READ_WRITE_RETURN_TYPE _EXFUN(_write, (int __fd, const void *__buf, size_t __nbyte )); int _EXFUN(_execve, (const char *__path, char * const __argv[], char * const __envp[] )); |