mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 04:30:45 -08:00
(__morecore): Fix the declaration to comply with the definition.
This commit is contained in:
parent
794855cae2
commit
3cacba85d9
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2007-06-18 Sam Steingold <sds@gnu.org>
|
||||
|
||||
* gmalloc.c (__morecore): Fix the declaration to comply with the
|
||||
definition.
|
||||
|
||||
2007-06-20 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* w32term.c (w32_delete_display): Remove leftover declaration.
|
||||
|
|
|
|||
|
|
@ -373,7 +373,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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue