From 27c0c24c97b9639e9a33e8b25c566fd285788739 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sun, 2 Jan 2022 10:59:00 +0100 Subject: [PATCH] common: [nfc] remove useless default extern declaration of functions in memory.h --- lib/common/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/memory.h b/lib/common/memory.h index 7881fe8af..459f1928c 100644 --- a/lib/common/memory.h +++ b/lib/common/memory.h @@ -34,7 +34,7 @@ extern "C" { #endif #ifndef MEMORY_API -#define MEMORY_API extern +#define MEMORY_API /* nothing */ #endif MEMORY_API void *zmalloc(size_t); -- 2.50.1