diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-20 19:00:39 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-20 19:19:54 -0700 |
commit | cbff9bf03861b8d63f598d3370c82a96511a754c (patch) | |
tree | 5a11f1cff5b770e186f174b122aff6b90e4d6c4f /cc.h | |
parent | 3be663812bd6cc94107b8ff8425246441795f30f (diff) |
Shorten some names with 'long'
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -198,10 +198,10 @@ struct type { BASICINT, BASICENUM, BASICLONG, - BASICLONGLONG, + BASICLLONG, BASICFLOAT, BASICDOUBLE, - BASICLONGDOUBLE, + BASICLDOUBLE, } kind; _Bool issigned, iscomplex; } basic; @@ -416,7 +416,7 @@ extern struct type typeshort, typeushort; extern struct type typeint, typeuint; extern struct type typelong, typeulong; extern struct type typellong, typeullong; -extern struct type typefloat, typedouble, typelongdouble; +extern struct type typefloat, typedouble, typeldouble; extern struct type typevalist, typevalistptr; /* decl */ |