This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
__STDC_VERSION__
- To: Neil Booth <neil at daikokuya dot demon dot co dot uk>
- Subject: __STDC_VERSION__
- From: Jakub Jelinek <jakub at redhat dot com>
- Date: Thu, 28 Dec 2000 14:08:37 +0100
- Cc: gcc at gcc dot gnu dot org
- Reply-To: Jakub Jelinek <jakub at redhat dot com>
Hi!
cpp.texi description of __STDC_VERSION__ macro suggests that this macro must
be defined unless -traditional, but this is not true with current cpplib.
cccp used to define it always to 199409 unless -traditional was given.
Is it correct not to define __STDC_VERSION__ for C89 (and thus shall we
change cpp.texi) or should cpplib define it to 199409L as fallback?
Jakub