From b428e51d3d2a5357e75d6ce41c91b26d98a0bfd7 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 25 Aug 2002 16:39:45 +0000 Subject: [PATCH] Fix to GCC_ATTRIBUTE Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@220 --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index b5306b75..2491c4e5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -185,7 +185,7 @@ AH_TEMPLATE([C_HAS_ATTRIBUTE],[Determines if the compilers supports attributes f AH_BOTTOM([#define INLINE inline]) AH_BOTTOM([#if C_HAS_ATTRIBUTE -#define GCC_ATTRIBUTE __attribute__ +#define GCC_ATTRIBUTE(x) __attribute__ ((x)) #else #define GCC_ATTRIBUTE(x) /* attribute not supported */ #endif])