add TUInteger type

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5455 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1999-02-28 17:23:23 +00:00
parent 9e2d59218a
commit 53cf1cc2ee
2 changed files with 7 additions and 2 deletions

View File

@@ -224,6 +224,10 @@ define_type (int level, char *name, Type *t, int typedefp)
space(level);
fprintf (headerfile, "int %s;\n", name);
break;
case TUInteger:
space(level);
fprintf (headerfile, "unsigned int %s;\n", name);
break;
case TOctetString:
space(level);
fprintf (headerfile, "octet_string %s;\n", name);