2002-10-18 Stephane Carrez <stcarrez@nerim.fr>

* m68hc11/syscalls.c (sbrk): Use ptrdiff_t for increment parameter.
This commit is contained in:
Jeff Johnston 2002-10-18 20:54:37 +00:00
parent c9ccb1f20e
commit 2ed0e93ccc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-10-18 Stephane Carrez <stcarrez@nerim.fr>
* m68hc11/syscalls.c (sbrk): Use ptrdiff_t for increment parameter.
2002-10-07 Richard Sandiford <rsandifo@redhat.com>
* mips/ddb.ld: KEEP .init and .fini.

View File

@ -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;