From b38042f51430974642616a60afbbf96fd0b98659 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Mon, 4 Sep 2017 10:52:28 +0200 Subject: math.h: Warn about an already-defined log macro This is a common programming error, and the cause of the problem is not always obvious. defines a log macro, but it includes before that, so that is compatible with the warning. --- math/math.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'math/math.h') diff --git a/math/math.h b/math/math.h index 547b36d..6c2ad97 100644 --- a/math/math.h +++ b/math/math.h @@ -26,6 +26,11 @@ #define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION #include +#if defined log && defined __GNUC__ +# warning A macro called log was already defined when was included. +# warning This will cause compilation problems. +#endif + __BEGIN_DECLS /* Get definitions of __intmax_t and __uintmax_t. */ -- cgit v1.1