Fix a typo in #if 0 code

This commit is contained in:
Scott Long 2002-08-21 09:30:45 +00:00
parent 7effdac07a
commit 9fdff10aa0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102216

View file

@ -402,7 +402,7 @@ void Free(void *, const char *, int);
#define free(x) Free(x, __FILE__, __LINE__)
#define realloc(x, y) Realloc(x, y, __FILE__, __LINE__)
#else
#define malloc(x) Malloc(x, NULL 0)
#define malloc(x) Malloc(x, NULL, 0)
#define calloc(x, y) Calloc(x, y, NULL, 0)
#define free(x) Free(x, NULL, 0)
#define realloc(x, y) Realloc(x, y, NULL, 0)