summaryrefslogtreecommitdiff
path: root/bcc/types.h
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1997-10-05 15:05:09 +0200
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:40:02 +0200
commit48798bf2eb93ec3b99720ac2e16093441156653d (patch)
tree35e03d95df5f2677f05e32d70abb6d0583aa47ba /bcc/types.h
parent9d97bc3cb3aecd3416fb7c4be3ca2f436665b696 (diff)
downloaddev86-48798bf2eb93ec3b99720ac2e16093441156653d.tar.gz
Import Dev86src-0.13.0.tar.gzv0.13.0
Diffstat (limited to 'bcc/types.h')
-rw-r--r--bcc/types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bcc/types.h b/bcc/types.h
index 79ff836..da34a3a 100644
--- a/bcc/types.h
+++ b/bcc/types.h
@@ -92,7 +92,7 @@ typedef smalu_pt constr_pt; /* promoted constr_t */
typedef smalu_t constr_t; /* type constructor flags */
typedef smalu_pt indn_pt; /* promoted indn_t */
typedef smalu_t indn_t; /* storage indirection count */
-typedef unsigned label_t; /* label number */
+typedef unsigned label_no; /* label number */
typedef smalu_t maclev_t; /* macro expansion level */
typedef smalin_pt op_pt; /* promoted op_t */
typedef smalin_t op_t; /* operator code */
@@ -147,7 +147,7 @@ struct symstruct
{
double *offd; /* value for double constants */
offset_t offi; /* offset for register or global storage */
- label_t offlabel; /* label number for strings */
+ label_no offlabel; /* label number for strings */
char *offp; /* to string for macro definitions */
sym_pt offsym; /* symbol code for keywords */
value_t offv; /* value for integral constants */
@@ -155,7 +155,7 @@ struct symstruct
offset;
union
{
- label_t label; /* label number for strings */
+ label_no label; /* label number for strings */
char namea[1]; /* variable length array for declarations */
char *namep; /* to constant storage for exprs */
}