From e6edfa7117fc20abf8d5caf0bb027a5f79c294cc Mon Sep 17 00:00:00 2001 From: Gerson Fernando Budke Date: Wed, 13 Oct 2021 19:34:47 -0300 Subject: [PATCH] [fix][common] Drop duplicated NULL definition Signed-off-by: Gerson Fernando Budke --- common/misc/misc.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/misc/misc.h b/common/misc/misc.h index fd87c78d..058ef2ac 100644 --- a/common/misc/misc.h +++ b/common/misc/misc.h @@ -123,12 +123,6 @@ typedef void (*pFunc)(void); #define ARCH_MemCpy4 arch_memcpy4 #define ARCH_MemCpy_Fast arch_memcpy_fast #define ARCH_MemSet4 arch_memset4 -/** - * @brief Null Type definition - */ -#ifndef NULL -#define NULL 0 -#endif void *arch_memcpy(void *dst, const void *src, uint32_t n); void *arch_memset(void *s, uint8_t c, uint32_t n);