aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmalloc.c
diff options
context:
space:
mode:
authorJoakim Verona2011-06-16 00:22:07 +0200
committerJoakim Verona2011-06-16 00:22:07 +0200
commita7513ade3bc0fe79430d5541d88c9dcda0932bec (patch)
tree4383951ba698a11e9f8933a9d8c72e00aa872a10 /src/gmalloc.c
parent4bd51ad5c3445b644dfb017d5b57b10a90aa325f (diff)
parent4bba86e6210a74326e843a8fdc8409127105e1fe (diff)
downloademacs-a7513ade3bc0fe79430d5541d88c9dcda0932bec.tar.gz
emacs-a7513ade3bc0fe79430d5541d88c9dcda0932bec.zip
merge from upstream
Diffstat (limited to 'src/gmalloc.c')
-rw-r--r--src/gmalloc.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c
index 5237432872d..a023d2d78e5 100644
--- a/src/gmalloc.c
+++ b/src/gmalloc.c
@@ -552,12 +552,8 @@ get_contiguous_space (size, position)
552/* This is called when `_heapinfo' and `heapsize' have just 552/* This is called when `_heapinfo' and `heapsize' have just
553 been set to describe a new info table. Set up the table 553 been set to describe a new info table. Set up the table
554 to describe itself and account for it in the statistics. */ 554 to describe itself and account for it in the statistics. */
555static void register_heapinfo PP ((void)); 555static inline void
556#ifdef __GNUC__ 556register_heapinfo (void)
557__inline__
558#endif
559static void
560register_heapinfo ()
561{ 557{
562 __malloc_size_t block, blocks; 558 __malloc_size_t block, blocks;
563 559
@@ -2170,4 +2166,3 @@ mprobe (__ptr_t ptr)
2170} 2166}
2171 2167
2172#endif /* GC_MCHECK */ 2168#endif /* GC_MCHECK */
2173