extern void one(void);
extern void two(void);
extern void three(void);

int main(void)
{
  one();
  two();
  three();

  return 0;
}
