not that it is 1.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123974
138bc75d-0d04-0410-961f-
82ee72b054a4
2007-04-19 Janis Johnson <janis187@us.ibm.com>
+ * ginclude/float.h: Check that __STDC_WANT_DEC_FP__ is defined,
+ not that it is 1.
+
* c-cppbuiltin.c (c_cpp_builtins): Remove definition of
__STDC_WANT_DEC_FP__.
#endif /* C99 */
-#if __STDC_WANT_DEC_FP__ == 1
+#ifdef __STDC_WANT_DEC_FP__
/* Draft Technical Report 24732, extension for decimal floating-point
arithmetic: Characteristic of decimal floating types <float.h>. */
#undef DECFLT_EVAL_METHOD
#define DECFLT_EVAL_METHOD __DECFLT_EVAL_METHOD__
-#endif /* __STDC_WANT_DEC_FP__ == 1 */
+#endif /* __STDC_WANT_DEC_FP__ */
#endif /* _FLOAT_H___ */