typo
[libfirm] / ir / be / test / fehler016.c
1 #include <stdio.h>
2
3 static char string[2048] = "";
4 static char string2[2048] = "It's indeed okay";
5
6 int main()
7 {
8         sprintf(string, "This is a very long sentence to test, whether the compiler crashs because of obscure bugs... If you can read it all until the exclamation mark, then your compiler is probably okay!");
9
10         puts(string);
11         puts(string2);
12         return 0;
13 }