1 unsigned long f1();
2 int f2();
3 
store_aff_word(int x)4 int store_aff_word(int x) {
5   return (int) (x ? f1() : f2());
6 }
7