summaryrefslogtreecommitdiff
path: root/malloc/malloc.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-04-09 20:47:09 +0000
committerJakub Jelinek <jakub@redhat.com>2009-04-09 20:47:09 +0000
commit5cb5c2a33524f2332f107c4e78737086f57b0e0b (patch)
treedad3cb75bfa460cc3c39fd7218504a9ac772269b /malloc/malloc.h
parent0978e4c8435a3084a7ae36241243e64fde2d9ba9 (diff)
Updated to fedora-glibc-20090409T1422cvs/fedora-glibc-2_9_90-15
Diffstat (limited to 'malloc/malloc.h')
-rw-r--r--malloc/malloc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/malloc/malloc.h b/malloc/malloc.h
index 2c0ee35c4e..d0aedc0cdf 100644
--- a/malloc/malloc.h
+++ b/malloc/malloc.h
@@ -23,6 +23,7 @@
#include <features.h>
#include <stddef.h>
+#include <stdio.h>
# define __malloc_ptr_t void *
/* Used by GNU libc internals. */
@@ -144,6 +145,9 @@ extern size_t malloc_usable_size __MALLOC_P ((void *__ptr));
/* Prints brief summary statistics on stderr. */
extern void malloc_stats __MALLOC_P ((void));
+/* Output information about state of allocator to stream FP. */
+extern int malloc_info (int __options, FILE *__fp);
+
/* Record the state of all malloc variables in an opaque data structure. */
extern void *malloc_get_state __MALLOC_P ((void));