]> git.eshelyaron.com Git - emacs.git/commitdiff
(__morecore): Fix the declaration to comply with the definition.
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Tue, 7 Aug 2007 09:02:32 +0000 (09:02 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Tue, 7 Aug 2007 09:02:32 +0000 (09:02 +0000)
src/ChangeLog
src/gmalloc.c

index ef9dcec6aae5ce15c64d8c639f8bc655a63dddae..cebb164ecf005e0cd3b1a7cb185da30192e10a0a 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-07  Sam Steingold  <sds@gnu.org>
+
+       * gmalloc.c (__morecore): Fix the declaration to comply with the
+       definition.
+
 2007-08-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * emacs.c (main)
index 7e317eb4cc33cbb1bbbce5db8eb98788f8c32328..b1f8513c5fb8573d4ab274799cf1f34fa039729c 100644 (file)
@@ -402,7 +402,7 @@ Fifth Floor, Boston, MA 02110-1301, USA.
 extern __ptr_t bss_sbrk PP ((ptrdiff_t __size));
 extern int bss_sbrk_did_unexec;
 #endif
-__ptr_t (*__morecore) PP ((ptrdiff_t __size)) = __default_morecore;
+__ptr_t (*__morecore) PP ((__malloc_ptrdiff_t __size)) = __default_morecore;
 
 /* Debugging hook for `malloc'.  */
 __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size));