aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-20 19:00:39 -0700
committerMichael Forney <mforney@mforney.org>2019-04-20 19:19:54 -0700
commitcbff9bf03861b8d63f598d3370c82a96511a754c (patch)
tree5a11f1cff5b770e186f174b122aff6b90e4d6c4f /cc.h
parent3be663812bd6cc94107b8ff8425246441795f30f (diff)
Shorten some names with 'long'
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc.h b/cc.h
index 0de4d2b..c2ee78f 100644
--- a/cc.h
+++ b/cc.h
@@ -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 */