HP C B.11.11.16 Release Notes

HP C/ANSI C Release Notes
New Features in Version B.11.11.14
Chapter 110
struct S s;
get_record(&s); /* function get_record() defined elsewhere */
switch (s.k) {
case kind_int:
i = s.i;
break;
case kind_real:
d = s.d;
break;
}
return 0;
}
In the above example, the members i and d of the unnamed union inside the struct S are
accessed directly as s.i and s.d, respectively.
New option -H to Print Include Files' Hierarchy
The -H option enables HPC to print the order and hierarchy of included files to stderr.
Syntax:
cc -H <file>
where <file> is a C program source file with one or more #include directives.