dl2.c 179 B

12345678910111213141516
  1. #include <stdio.h>
  2. int foo;
  3. extern void xxx (void);
  4. void
  5. bar (int x)
  6. {
  7. if (foo == 1)
  8. printf ("OK1\n");
  9. else if (foo == 0)
  10. printf ("OK2\n");
  11. foo = -1;
  12. xxx ();
  13. }