summaryrefslogtreecommitdiffstats
path: root/include/complex.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/complex.h')
-rw-r--r--include/complex.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/complex.h b/include/complex.h
index 4142304..395983f 100644
--- a/include/complex.h
+++ b/include/complex.h
@@ -29,11 +29,15 @@
#ifndef _COMPLEX_H
#define _COMPLEX_H
+#include <sys/cdefs.h>
+
#ifdef __GNUC__
#if __STDC_VERSION__ < 199901
#define _Complex __complex__
#endif
-#define _Complex_I 1.0fi
+#define _Complex_I ((float _Complex)1.0i)
+_Static_assert(__generic(_Complex_I, float _Complex, 1, 0),
+ "_Complex_I must be of type float _Complex");
#endif
#define complex _Complex
OpenPOWER on IntegriCloud