diff options
-rw-r--r-- | test/CFrontend/2005-02-20-AggregateSAVEEXPR.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c b/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c index 63bb251..7a95533 100644 --- a/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c +++ b/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c @@ -8,7 +8,11 @@ // // XFAIL: sparc -#include <complex.h> +#ifdef __CYGWIN__ + #include <mingw/complex.h> +#else + #include <complex.h> +#endif int foo(complex float c) { return creal(c); |