search for: xunion

Displaying 1 result from an estimated 1 matches for "xunion".

Did you mean: union
2015 Aug 28
2
RFC: alloca -- specify rounding factor for allocation (and more)
...euse X X Xreuse.shar: Makefile *.h *.c X shar $+ > $@ X END-of-Makefile echo x - types.h sed 's/^X//' >types.h << 'END-of-types.h' Xstruct param_a_b X{ X int a; X int b; X}; X X Xstruct param_a_b_c X{ X struct param_a_b a_b; X int c; X}; X X Xunion alloc_param_a_b X{ X struct param_a_b param; X unsigned char space[ 64 * ((sizeof( struct param_a_b) + 63) / 64)]; X}; X X Xunion alloc_param_a_b_c X{ X struct param_a_b_c param; X unsigned char space[ 64 * ((sizeof( struct param_a_b_c) + 63) / 64)]; X}; END-of-types.h echo...