diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-11 16:25:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-11 16:25:55 +0000 |
commit | 9b39f1ce8980202bcd9db6be04b462e766d7d91c (patch) | |
tree | dfbf6d1253feb46f2b9730c33394dd5dbcea19f7 /include/stdlib.h | |
parent | 007b8e2060ccae6159a36c52db42d04b13fa2b6f (diff) |
A patch from Matthias Kilian <kili@outback.escape.de> to fix -DDEBUG_MALLOC
so that it works for realloc too.
-Erik
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 4f225aacc..cdb3e8fee 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -80,7 +80,7 @@ extern __ptr_t realloc_dbg __P ((__ptr_t, size_t, char* func, char* file, int li extern void free_dbg __P ((__ptr_t, char* func, char* file, int line)); #define calloc(x,y) calloc_dbg((x),(y),__FUNCTION__,__FILE__,__LINE__) #define malloc(x) malloc_dbg((x),__FUNCTION__,__FILE__,__LINE__) -#define realloc(x) realloc((x),__FUNCTION__,__FILE__,__LINE__) +#define realloc(x,y) realloc_dbg((x),(y),__FUNCTION__,__FILE__,__LINE__) #define free(x) free_dbg((x),__FUNCTION__,__FILE__,__LINE__) #endif |