diff options
| author | Dave Love | 2000-09-25 21:07:55 +0000 |
|---|---|---|
| committer | Dave Love | 2000-09-25 21:07:55 +0000 |
| commit | b1685c5fea6f6d07b7341329acf7489437f6a60e (patch) | |
| tree | 96252b21c3abe0afb12288d76b937ad0b1f09e2b /src/ralloc.c | |
| parent | 755a2ccd6e0bd1b9ee90bf3d1f5fa80261cb0395 (diff) | |
| download | emacs-b1685c5fea6f6d07b7341329acf7489437f6a60e.tar.gz emacs-b1685c5fea6f6d07b7341329acf7489437f6a60e.zip | |
(__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 (); | |||
| 46 | extern int mallopt (); | 46 | extern int mallopt (); |
| 47 | #else /* not DOUG_LEA_MALLOC */ | 47 | #else /* not DOUG_LEA_MALLOC */ |
| 48 | #ifndef SYSTEM_MALLOC | 48 | #ifndef SYSTEM_MALLOC |
| 49 | extern int __malloc_extra_blocks; | 49 | extern size_t __malloc_extra_blocks; |
| 50 | #endif /* SYSTEM_MALLOC */ | 50 | #endif /* SYSTEM_MALLOC */ |
| 51 | #endif /* not DOUG_LEA_MALLOC */ | 51 | #endif /* not DOUG_LEA_MALLOC */ |
| 52 | 52 | ||