home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_05 / 8n05076c < prev    next >
Text File  |  1990-04-18  |  214b  |  16 lines

  1.  
  2. Listing 9:
  3. main()
  4. {
  5.     test();
  6.     printf("test() called, testcalled = %d\n", testcalled);
  7.     test();
  8.     printf("test() called, testcalled = %d\n", testcalled);
  9.     exit(0);
  10. }
  11. static test()
  12. {
  13.     testcalled++;
  14. }
  15.  
  16.