From 067d0e476abe42f1e290039cb903928080e90d8d Mon Sep 17 00:00:00 2001 From: Csaba Henk Date: Sat, 2 Oct 2010 07:30:38 +0000 Subject: implemented graph printing Signed-off-by: Csaba Henk Signed-off-by: Vijay Bellur BUG: 1750 (clean up volgen) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1750 --- libglusterfs/src/mem-pool.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libglusterfs/src/mem-pool.h') diff --git a/libglusterfs/src/mem-pool.h b/libglusterfs/src/mem-pool.h index 0b467bb2cdb..21ff4c801c3 100644 --- a/libglusterfs/src/mem-pool.h +++ b/libglusterfs/src/mem-pool.h @@ -26,6 +26,7 @@ #include #include #include +#include #define MALLOC(size) malloc(size) @@ -60,6 +61,9 @@ __gf_malloc (size_t size, uint32_t type); void * __gf_realloc (void *ptr, size_t size); +int +gf_vasprintf (char **string_ptr, const char *format, va_list arg); + int gf_asprintf (char **string_ptr, const char *format, ...); -- cgit