|
|
c6d234 |
commit afb466fcb034f594e083b5664fa60a0d4f54c41b
|
|
|
c6d234 |
Author: Will Newton <will.newton@linaro.org>
|
|
|
c6d234 |
Date: Mon Mar 17 11:06:02 2014 +0000
|
|
|
c6d234 |
|
|
|
c6d234 |
Fix __STRICT_ANSI__ -Wundef warnings
|
|
|
c6d234 |
|
|
|
c6d234 |
ChangeLog:
|
|
|
c6d234 |
|
|
|
c6d234 |
2014-03-17 Will Newton <will.newton@linaro.org>
|
|
|
c6d234 |
|
|
|
c6d234 |
* argp/argp-fmtstream.h: Check whether
|
|
|
c6d234 |
__STRICT_ANSI__ is defined with #ifdef rather
|
|
|
c6d234 |
than #if.
|
|
|
c6d234 |
* argp/argp.h: Likewise.
|
|
|
c6d234 |
|
|
|
c6d234 |
diff --git a/argp/argp-fmtstream.h b/argp/argp-fmtstream.h
|
|
|
c6d234 |
index f4140b924c13a302..61c45bf86b6bf8d5 100644
|
|
|
c6d234 |
--- a/argp/argp-fmtstream.h
|
|
|
c6d234 |
+++ b/argp/argp-fmtstream.h
|
|
|
c6d234 |
@@ -31,12 +31,14 @@
|
|
|
c6d234 |
|
|
|
c6d234 |
#ifndef __attribute__
|
|
|
c6d234 |
/* This feature is available in gcc versions 2.5 and later. */
|
|
|
c6d234 |
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
|
|
|
c6d234 |
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || \
|
|
|
c6d234 |
+ defined __STRICT_ANSI__
|
|
|
c6d234 |
# define __attribute__(Spec) /* empty */
|
|
|
c6d234 |
# endif
|
|
|
c6d234 |
/* The __-protected variants of `format' and `printf' attributes
|
|
|
c6d234 |
are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
|
|
|
c6d234 |
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || __STRICT_ANSI__
|
|
|
c6d234 |
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || \
|
|
|
c6d234 |
+ defined __STRICT_ANSI__
|
|
|
c6d234 |
# define __format__ format
|
|
|
c6d234 |
# define __printf__ printf
|
|
|
c6d234 |
# endif
|
|
|
c6d234 |
diff --git a/argp/argp.h b/argp/argp.h
|
|
|
c6d234 |
index 8fb7098061443ba8..37544fe44a102574 100644
|
|
|
c6d234 |
--- a/argp/argp.h
|
|
|
c6d234 |
+++ b/argp/argp.h
|
|
|
c6d234 |
@@ -38,12 +38,14 @@
|
|
|
c6d234 |
|
|
|
c6d234 |
#ifndef __attribute__
|
|
|
c6d234 |
/* This feature is available in gcc versions 2.5 and later. */
|
|
|
c6d234 |
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
|
|
|
c6d234 |
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || \
|
|
|
c6d234 |
+ defined __STRICT_ANSI__
|
|
|
c6d234 |
# define __attribute__(Spec) /* empty */
|
|
|
c6d234 |
# endif
|
|
|
c6d234 |
/* The __-protected variants of `format' and `printf' attributes
|
|
|
c6d234 |
are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
|
|
|
c6d234 |
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || __STRICT_ANSI__
|
|
|
c6d234 |
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || \
|
|
|
c6d234 |
+ defined __STRICT_ANSI__
|
|
|
c6d234 |
# define __format__ format
|
|
|
c6d234 |
# define __printf__ printf
|
|
|
c6d234 |
# endif
|