]> git.wh0rd.org - ICEs.git/blob - pic.i.0
e1425897dd779f8ae8e162fb66a122592ab2cba0
[ICEs.git] / pic.i.0
1 static inline int frobnicate(int x)
2 {
3 return x + 1;
4 }
5
6 int refrobnicate(int y)
7 {
8 void *frob = (void *)frobnicate;
9
10 int (*frob_fn) (int) = frob;
11 return frob_fn(y) + frob_fn(y);
12 }