diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-12-08 13:39:44 +0000 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-12-08 13:39:44 +0000 |
commit | 024b317de09a7d426973ffa16e4781ec75aaef35 (patch) | |
tree | 6994f5266e93773333bfa99fa24489ac139452a3 /src/heap.h | |
parent | 6e6f992f8cbc01ce4d6840d1a020f18846c37847 (diff) | |
download | tinyproxy-024b317de09a7d426973ffa16e4781ec75aaef35.tar.gz tinyproxy-024b317de09a7d426973ffa16e4781ec75aaef35.zip |
Convert tabs to spaces
Diffstat (limited to '')
-rw-r--r-- | src/heap.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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__) |