diff options
author | Dave Love <fx@gnu.org> | 2000-09-25 21:07:55 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-09-25 21:07:55 +0000 |
commit | b1685c5fea6f6d07b7341329acf7489437f6a60e (patch) | |
tree | 96252b21c3abe0afb12288d76b937ad0b1f09e2b /src/ralloc.c | |
parent | 755a2ccd6e0bd1b9ee90bf3d1f5fa80261cb0395 (diff) | |
download | emacs-b1685c5fea6f6d07b7341329acf7489437f6a60e.tar.gz |
(__malloc_extra_blocks): Declare as __malloc_size_t.
Diffstat (limited to 'src/ralloc.c')
-rw-r--r-- | src/ralloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ralloc.c b/src/ralloc.c index d61c59a253b..2e9004baa2f 100644 --- a/src/ralloc.c +++ b/src/ralloc.c @@ -46,7 +46,7 @@ extern void safe_bcopy (); extern int mallopt (); #else /* not DOUG_LEA_MALLOC */ #ifndef SYSTEM_MALLOC -extern int __malloc_extra_blocks; +extern size_t __malloc_extra_blocks; #endif /* SYSTEM_MALLOC */ #endif /* not DOUG_LEA_MALLOC */ |