]> sourceware.org Git - newlib-cygwin.git/commitdiff
2002-10-18 Stephane Carrez <stcarrez@nerim.fr>
authorJeff Johnston <jjohnstn@redhat.com>
Fri, 18 Oct 2002 20:54:37 +0000 (20:54 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Fri, 18 Oct 2002 20:54:37 +0000 (20:54 +0000)
        * m68hc11/syscalls.c (sbrk): Use ptrdiff_t for increment parameter.

libgloss/ChangeLog
libgloss/m68hc11/syscalls.c

index 45a6636fd9778eab8e20a9d818c383f63f62a650..9aeb47863bb7f8df6a4925c55d3bf4a016e7db68 100644 (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.
index 071583d9c5fc394f783aa8d23a5fd880f2ffb556..9620146d723cdde25936f679ae578e479ee770bc 100644 (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;
This page took 0.034867 seconds and 5 git commands to generate.