- fixed comment: bs cannot be NULL anymore (and was never NULL previously)
[libfirm] / ir / be / test / fehler108.c
1 #include <stdio.h>
2
3 int f(void) {
4         return 42;
5 }
6
7 int (*f_ptr) (void) = &f;
8
9 int main(void) {
10         (**printf)("Res: %d (should be 42)\n", (********f_ptr)());
11         return 0;
12 }