#include "assertion.h"
+#include "attrib.h"
-int AssertAtLinkTime (AssertAction A)
+int AssertAtLinkTime (AssertAction A attribute ((unused)))
/* Return true if this assertion should be evaluated at link time */
{
/* Currently all assertions are evaluated at link time */
int AssertAtAsmTime (AssertAction A)
/* Return true if this assertion should be evaluated at assembly time */
-{
+{
return (A & 0x02U) == 0;
}
/* */
/* */
/* */
-/* (C) 2000 Ullrich von Bassewitz */
-/* Wacholderweg 14 */
-/* D-70597 Stuttgart */
-/* EMail: uz@musoftware.de */
+/* (C) 2000-2009, Ullrich von Bassewitz */
+/* Roemerstrasse 52 */
+/* D-70794 Filderstadt */
+/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
-#if defined(__GNUC__)
+#if defined(__GNUC__) || defined(__CC65__)
# define attribute(a) __attribute__(a)
#else
-# define attribute(a)
+# define attribute(a)
#endif