diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-10-18 20:54:37 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-10-18 20:54:37 +0000 |
commit | 2ed0e93ccc77c8440012ed146b570eb64268b495 (patch) | |
tree | 0edf97d9b14dd2fa8118e1307ad442766a05b3d9 /libgloss/m68hc11 | |
parent | c9ccb1f20ed77c17a87a1ee837294c17087281a9 (diff) | |
download | newlib-2ed0e93ccc77c8440012ed146b570eb64268b495.zip newlib-2ed0e93ccc77c8440012ed146b570eb64268b495.tar.gz newlib-2ed0e93ccc77c8440012ed146b570eb64268b495.tar.bz2 |
2002-10-18 Stephane Carrez <stcarrez@nerim.fr>
* m68hc11/syscalls.c (sbrk): Use ptrdiff_t for increment parameter.
Diffstat (limited to 'libgloss/m68hc11')
-rw-r--r-- | libgloss/m68hc11/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/m68hc11/syscalls.c b/libgloss/m68hc11/syscalls.c index 071583d..9620146 100644 --- a/libgloss/m68hc11/syscalls.c +++ b/libgloss/m68hc11/syscalls.c @@ -49,7 +49,7 @@ write(int file, const void *p, size_t len) } void * -sbrk(size_t incr) +sbrk(ptrdiff_t incr) { extern char _end; /* Defined by the linker */ static char *heap_end; |