From: Daniel Lehman dlehman25@gmail.com
--- include/msvcrt/complex.h | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/include/msvcrt/complex.h b/include/msvcrt/complex.h index 2d7009c470c..53a72b6a000 100644 --- a/include/msvcrt/complex.h +++ b/include/msvcrt/complex.h @@ -24,4 +24,10 @@ typedef struct _C_float_complex typedef _C_double_complex _Dcomplex; typedef _C_float_complex _Fcomplex;
+double __cdecl cimag(_Dcomplex); +double __cdecl creal(_Dcomplex); + +float __cdecl cimagf(_Fcomplex); +float __cdecl crealf(_Fcomplex); + #endif /* _COMPLEX_H_DEFINED */