Quiet warnings.

This commit is contained in:
hpa 2001-07-21 01:49:04 +00:00
parent b9ca0ec54b
commit 4bcf957aaf
2 changed files with 14 additions and 4 deletions

View file

@ -51,4 +51,10 @@ void set_signal(int, void (*)(int), int);
void *tfmalloc(size_t);
char *tfstrdup(const char *);
#ifdef __GNUC__
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
#endif