diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-08-19 11:25:24 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-08-19 11:25:24 -0700 |
commit | 3dc736d939536bcd843597cb655fcba28268705c (patch) | |
tree | 6c69e8113f12d847aa00e1c56df66c5777a43137 /config.h.in | |
parent | 297bf6343f27ea1d18e5dad529c253ffd3935d41 (diff) | |
download | tcpdump-3dc736d939536bcd843597cb655fcba28268705c.tar.gz |
Handle attributes for function pointers by checking the compiler version.
Handle attributes for function pointers the same way we handle
attributes for functions, by explicitly checking for the compiler
version with #if rather than with a configure script check. That's one
fewer thing that, if you're not using autoconf, has to be done in some
other fashion.
While we're at it, put NORETURN in the right place to have it work with
Microsoft Visual Studio as well as various UN*X compilers.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/config.h.in b/config.h.in index 6388afdc..6adf589f 100644 --- a/config.h.in +++ b/config.h.in @@ -335,17 +335,6 @@ warning */ #undef __ATTRIBUTE___FALLTHROUGH_OK -/* define if your compiler allows __attribute__((format)) without a warning */ -#undef __ATTRIBUTE___FORMAT_OK - -/* define if your compiler allows __attribute__((format)) to be applied to - function pointers */ -#undef __ATTRIBUTE___FORMAT_OK_FOR_FUNCTION_POINTERS - -/* define if your compiler allows __attribute__((noreturn)) to be applied to - function pointers */ -#undef __ATTRIBUTE___NORETURN_OK_FOR_FUNCTION_POINTERS - /* to handle Ultrix compilers that don't support const in prototypes */ #undef const |