Mark an unsed parameter as unused. __attribute__ also supported by cc65.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4376 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-10-19 17:25:43 +00:00
parent 548336a7bd
commit 399c37273d
2 changed files with 9 additions and 8 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (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 */
@@ -44,10 +44,10 @@
#if defined(__GNUC__)
#if defined(__GNUC__) || defined(__CC65__)
# define attribute(a) __attribute__(a)
#else
# define attribute(a)
# define attribute(a)
#endif