mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
10 lines
115 B
C
10 lines
115 B
C
|
union U{
|
||
|
int i[8];
|
||
|
char s[80];
|
||
|
};
|
||
|
|
||
|
void format_message(char *buffer, union U *u) {
|
||
|
sprintf(buffer, u->s);
|
||
|
}
|
||
|
|