llvm-6502/test/CFrontend/2003-10-02-UnionLValueError.c

10 lines
115 B
C
Raw Normal View History

union U{
int i[8];
char s[80];
};
void format_message(char *buffer, union U *u) {
sprintf(buffer, u->s);
}