1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef varattrs_h
- #define varattrs_h
- #include <pcap/compiler-tests.h>
- #if __has_attribute(unused) \
- || PCAP_IS_AT_LEAST_GNUC_VERSION(2,0)
-
- #define _U_ __attribute__((unused))
- #else
-
- #define _U_
- #endif
- #endif
|