summaryrefslogtreecommitdiff
path: root/src/complex
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-03 21:18:26 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-03 21:18:26 -0500
commit1a58ea99eebe390da58e60e61c333e060364af9e (patch)
tree7035863e5b70364e1babd397a78771030b2bdb5e /src/complex
parent7de5c55472611fe8ee33f4254f640c7097003748 (diff)
clean up definition, add some linebreaks to improve readability
Diffstat (limited to 'src/complex')
-rw-r--r--src/complex/_Complex_I.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/complex/_Complex_I.c b/src/complex/_Complex_I.c
index a250d031..beded4ab 100644
--- a/src/complex/_Complex_I.c
+++ b/src/complex/_Complex_I.c
@@ -1,7 +1,10 @@
#include <complex.h>
#define _Complex_I \
- (((union { _Complex float __c; float __f[2]; }){.__f = {0., 1.} }).__c)
+ (((union { \
+ float _Complex __c; \
+ float __f[2]; \
+ }){ .__f = { 0.0, 1.0 } }).__c)
/*