From 2250130c537fda373a4362cf7727562287eb1168 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 16 Sep 2022 01:03:47 -0400 Subject: [PATCH] remove unnecessary UNUSED marker --- h_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h_malloc.c b/h_malloc.c index 4b68841..aca3f02 100644 --- a/h_malloc.c +++ b/h_malloc.c @@ -1857,7 +1857,7 @@ EXPORT struct mallinfo2 h_mallinfo2(void) { #endif #ifndef __ANDROID__ -EXPORT int h_malloc_info(int options, UNUSED FILE *fp) { +EXPORT int h_malloc_info(int options, FILE *fp) { if (options) { errno = EINVAL; return -1;