summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-02 17:19:51 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-02 17:19:51 -0500
commit689b06b8dfce4076826994a691120ea7cfce5af7 (patch)
tree0f630fb7435931945c0bf295ea127059d214c591 /README
parent3c9cf9f6710bac9632d3a7597697d02321b89a0e (diff)
the described behavior for _Complex is already in 9899
Diffstat (limited to 'README')
-rw-r--r--README7
1 files changed, 0 insertions, 7 deletions
diff --git a/README b/README
index c6777887..74920e73 100644
--- a/README
+++ b/README
@@ -40,13 +40,6 @@ pointer 32 32 64 64 64
The aformentioned symbol is used, among other places, for the proper definition
of size_t, ssize_t, and intptr_t.
-The implementation of <complex.h> depends on the compilers representation of
-_Complex types being the same as an array of two of the underlying floating
-point type, with the first being the real part and the second being the
-imaginary part. That is, for each type t in float, double, and long double,
-the declaration union { _Complex t c; t f[2]; }; should be usable to directly
-manipulate the real and imaginary members of the complex type.
-
Coding Style
------------
Start with K&R. Indents are tabs. Tabs are 8 spaces.