From 024b317de09a7d426973ffa16e4781ec75aaef35 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Mon, 8 Dec 2008 13:39:44 +0000 Subject: Convert tabs to spaces --- src/heap.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/heap.h') diff --git a/src/heap.h b/src/heap.h index 272d97c..3d534af 100644 --- a/src/heap.h +++ b/src/heap.h @@ -27,14 +27,14 @@ #ifndef NDEBUG extern void *debugging_calloc (size_t nmemb, size_t size, const char *file, - unsigned long line); + unsigned long line); extern void *debugging_malloc (size_t size, const char *file, - unsigned long line); + unsigned long line); extern void debugging_free (void *ptr, const char *file, unsigned long line); extern void *debugging_realloc (void *ptr, size_t size, const char *file, - unsigned long line); + unsigned long line); extern char *debugging_strdup (const char *s, const char *file, - unsigned long line); + unsigned long line); # define safecalloc(x, y) debugging_calloc(x, y, __FILE__, __LINE__) # define safemalloc(x) debugging_malloc(x, __FILE__, __LINE__) -- cgit v1.2.3