Stop defining '_Complex' in a C99 environment, it is supposed to be a keyword.

This commit is contained in:
stefanf 2004-08-14 18:03:21 +00:00
parent 0fd20b0ee2
commit 04319f388a

View File

@ -30,7 +30,9 @@
#define _COMPLEX_H
#ifdef __GNUC__
#if __STDC_VERSION__ < 199901
#define _Complex __complex__
#endif
#define _Complex_I 1.0fi
#endif