home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / TIME / CLOCK.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  236 b   |  14 lines

  1. /* clock.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <time.h>
  5.  
  6. #if CLOCKS_PER_SEC != 100
  7. emx must be changed!
  8. #endif
  9.  
  10. clock_t clock (void)
  11. {
  12.   return ((clock_t)__clock ());
  13. }
  14.