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