From 5292d0a7f308907bd9c3b37d42d348a144d05978 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Sun, 29 Mar 2020 06:48:59 +0000 Subject: [PATCH] loader: use #elif defined() in stand.h Small cleanup. Reported by: imp --- stand/libsa/stand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/libsa/stand.h b/stand/libsa/stand.h index 6fd668190db5..55031135b65d 100644 --- a/stand/libsa/stand.h +++ b/stand/libsa/stand.h @@ -443,7 +443,7 @@ extern void *calloc(size_t, size_t); extern void free(void *); extern void *realloc(void *, size_t); extern void *reallocf(void *, size_t); -#elif DEBUG_MALLOC +#elif defined(DEBUG_MALLOC) #define malloc(x) Malloc(x, __FILE__, __LINE__) #define memalign(x, y) Memalign(x, y, __FILE__, __LINE__) #define calloc(x, y) Calloc(x, y, __FILE__, __LINE__)