From 03aa110407e4e31076d97aaa9df51013d616fd20 Mon Sep 17 00:00:00 2001 From: iraizo Date: Wed, 12 Jan 2022 14:00:02 +0100 Subject: [PATCH] fixed redefenition of alias --- util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util.h b/util.h index 0df05ce..587cab6 100644 --- a/util.h +++ b/util.h @@ -27,7 +27,9 @@ #define ALIAS(f) -#ifndef __APPLE__ +#ifdef __APPLE__ +#define ALIAS(f) +#else #define STRINGIFY(s) #s #define ALIAS(f) __attribute__((alias(STRINGIFY(f)))) #endif