diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-12-01 15:01:11 +0000 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-12-01 15:01:11 +0000 |
commit | a257703e59163b4f38c38f549179b8e45ac68c63 (patch) | |
tree | d056783c13f4adb25c133899f5d750a2b7123a2f /src/heap.h | |
parent | 448c19077c195fafd244539eeb5315773261fcaf (diff) | |
download | tinyproxy-a257703e59163b4f38c38f549179b8e45ac68c63.tar.gz tinyproxy-a257703e59163b4f38c38f549179b8e45ac68c63.zip |
Reformat code to GNU coding style
This is a commit which simply ran all C source code files
through GNU indent. No other modifications were made.
Diffstat (limited to '')
-rw-r--r-- | src/heap.h | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -26,15 +26,15 @@ */ #ifndef NDEBUG -extern void *debugging_calloc(size_t nmemb, size_t size, const char *file, - unsigned long line); -extern void *debugging_malloc(size_t size, const char *file, - 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); -extern char *debugging_strdup(const char *s, const char *file, - unsigned long line); +extern void *debugging_calloc (size_t nmemb, size_t size, const char *file, + unsigned long line); +extern void *debugging_malloc (size_t size, const char *file, + 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); +extern char *debugging_strdup (const char *s, const char *file, + unsigned long line); # define safecalloc(x, y) debugging_calloc(x, y, __FILE__, __LINE__) # define safemalloc(x) debugging_malloc(x, __FILE__, __LINE__) @@ -60,7 +60,7 @@ free(*__safefree_tmp); \ /* * Allocate memory from the "shared" region of memory. */ -extern void *malloc_shared_memory(size_t size); -extern void *calloc_shared_memory(size_t nmemb, size_t size); +extern void *malloc_shared_memory (size_t size); +extern void *calloc_shared_memory (size_t nmemb, size_t size); #endif |