make use of gcc's __attribute__ extension

This commit is contained in:
Andrzej Rybczak
2009-05-03 15:14:31 +02:00
parent 72acc09b26
commit 84a9af2ee9
4 changed files with 11 additions and 4 deletions

View File

@@ -31,6 +31,14 @@
#include <vector>
#include <string>
#if defined(__GNUC__) && __GNUC__ >= 3
# define GNUC_UNUSED __attribute__((unused))
# define GNUC_PRINTF(a, b) __attribute__((format(printf, a, b)))
#else
# define GNUC_UNUSED
# define GNUC_PRINTF(a, b)
#endif
#ifdef USE_PDCURSES
# undef KEY_BACKSPACE
# define KEY_BACKSPACE 8