Checkin new file, reduced by Brian

llvm-svn: 8820
This commit is contained in:
Chris Lattner 2003-10-02 18:26:11 +00:00
parent 5facafaabe
commit f2397429f0
1 changed files with 9 additions and 0 deletions

View File

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