From 9dfebdf8276671552fe4254cd2f5b54f9aac39d2 Mon Sep 17 00:00:00 2001 From: Enrico Fraccaroli Date: Fri, 20 Jan 2023 09:27:35 -0500 Subject: [PATCH] Remove useless keyword in undef directive. --- libc/inc/array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/inc/array.h b/libc/inc/array.h index b32feaa..b687027 100644 --- a/libc/inc/array.h +++ b/libc/inc/array.h @@ -34,5 +34,5 @@ ARRAY_FREE(arr->buffer); \ } -#undef ARRAY_ALLOC malloc -#undef ARRAY_FREE free \ No newline at end of file +#undef ARRAY_ALLOC +#undef ARRAY_FREE