diff macro.c @ 107:33954a07d013

__unused -> UNUSED
author David A. Holland
date Tue, 11 Jun 2013 12:15:47 -0400
parents 60184aa42604
children c46959e2d9ef
line wrap: on
line diff
--- a/macro.c	Tue Jun 11 11:35:27 2013 -0400
+++ b/macro.c	Tue Jun 11 12:15:47 2013 -0400
@@ -44,7 +44,7 @@
 		unsigned param;
 	};
 };
-DECLARRAY(expansionitem, static __unused);
+DECLARRAY(expansionitem, static UNUSED);
 DEFARRAY(expansionitem, static);
 
 struct macro {
@@ -57,9 +57,9 @@
 	struct expansionitemarray expansion;
 	bool inuse;
 };
-DECLARRAY(macro, static __unused);
+DECLARRAY(macro, static UNUSED);
 DEFARRAY(macro, static);
-DECLARRAY(macroarray, static __unused);
+DECLARRAY(macroarray, static UNUSED);
 DEFARRAY(macroarray, static);
 
 static struct macroarrayarray macros;