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

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