Bring back UNUSED, it's going to be needed for some stub functions.

This commit is contained in:
Eric S. Raymond 2007-06-22 14:46:12 +00:00
parent dc232ad8e5
commit fc4c279d0d

View file

@ -57,4 +57,11 @@ namespace std {
#endif
/* Macro for declaring function arguments unused. */
#if defined(__GNUC__)
# define UNUSED __attribute__((unused)) /* Flag variable as unused */
#else /* not __GNUC__ */
# define UNUSED
#endif
#endif