home *** CD-ROM | disk | FTP | other *** search
/ Really Useful CD 1 / ReallyUsefulCD1.iso / extras / progutils / profiler / h / exprofle < prev   
Encoding:
Text File  |  1990-06-04  |  307 b   |  27 lines

  1. /*
  2.  *  exprofle.h
  3.  *
  4.  *  version 1.00, 04-06-1990
  5.  *
  6.  *  execution profiler headerfile
  7.  *
  8.  *  copyright Ferdinand Oeinck 1990
  9.  *
  10.  *
  11.  */
  12.  
  13. #ifndef __expro_h
  14. #define __expro_h
  15.  
  16. #ifndef EXPRO
  17. #define EXPRO 0
  18. #endif
  19.  
  20. #if EXPRO
  21. void exprofle_init(char * filename);
  22. #else
  23. #define exprofle_init(a) ;
  24. #endif
  25.  
  26. #endif
  27.