diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:18:26 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:18:26 -0500 |
commit | 1a58ea99eebe390da58e60e61c333e060364af9e (patch) | |
tree | 7035863e5b70364e1babd397a78771030b2bdb5e /src/complex | |
parent | 7de5c55472611fe8ee33f4254f640c7097003748 (diff) |
clean up definition, add some linebreaks to improve readability
Diffstat (limited to 'src/complex')
-rw-r--r-- | src/complex/_Complex_I.c | 5 |
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) /* |