Make this testcase compatible with CYGWIN.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44353 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zhou Sheng 2007-11-27 06:17:01 +00:00
parent b3d9cdb677
commit 515a641dac

View File

@ -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);