up io error count if not exiting
[tridge/junkcode.git] / void.c
1
2 static int xx(int *i)
3 {
4         return 0;
5 }
6
7 struct {
8         int (*fn)(void *);
9 } x;
10
11
12 int main(void)
13 {
14         x.fn = xx;
15         return 0;
16 }