home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 11 / CDACTUAL11.iso / cdactual / demobin / share / os2 / MST / SRC / MST_EMX.C next >
Encoding:
C/C++ Source or Header  |  1995-06-22  |  345 b   |  12 lines

  1. /* For GNU Smalltalk, since EMX obviously doesn't implement                  **
  2. ** the gethz function                                                        **
  3. ** I implement it as returning CLOCKS_PER_SEC as defined in emx's time.h.    */
  4.  
  5. #include <time.h>
  6.  
  7. int     gethz( void )
  8.         {
  9.         return CLOCKS_PER_SEC;
  10.         }
  11.  
  12.