From 2d2341a634a0d5c812cce6d8552614bd05f799c4 Mon Sep 17 00:00:00 2001 From: scottl Date: Wed, 21 Aug 2002 09:30:45 +0000 Subject: Fix a typo in #if 0 code --- lib/libstand/stand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libstand/stand.h') diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index a062179..44656df 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -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) -- cgit v1.1