extern void init (void);
extern void test (void);

int
main (void)
{
  init ();
  test ();
  return 0;
}