internal.h: Fix UNUSED_P for GCC 3.3 (fixes #288)

This commit is contained in:
Sebastian Pipping 2019-07-20 16:42:21 +02:00
parent 9c9d0d1a1f
commit 21e11f7782

View File

@ -102,7 +102,7 @@
#endif
#ifndef UNUSED_P
# ifdef __GNUC__
# if defined(__GNUC__) && (__GNUC__ >= 4)
# define UNUSED_P(p) UNUSED_ ## p __attribute__((__unused__))
# else
# define UNUSED_P(p) UNUSED_ ## p