diff options
| author | Scott Long <scottl@FreeBSD.org> | 2002-08-21 09:30:45 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2002-08-21 09:30:45 +0000 |
| commit | 9fdff10aa032eb10582f9a9e91febfe5d84c1ef0 (patch) | |
| tree | c2f5c6c1e0a46767973b43e2923a2c507d9ee85c | |
| parent | 7effdac07aa52f052a1b6c0aa1e86d76d6034bfd (diff) | |
Notes
| -rw-r--r-- | lib/libstand/stand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index a062179dc853..44656df83d34 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) |
