mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
0068d0ce6e
llvm-svn: 8820
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);
|
|
}
|
|
|