home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / TASKING.ZIP / CLOCKUTI.DEF < prev    next >
Encoding:
Modula Definition  |  1986-01-31  |  229 b   |  12 lines

  1. DEFINITION MODULE ClockUtilities;
  2.  
  3.   FROM TimeDate IMPORT Time;
  4.  
  5.   EXPORT QUALIFIED TimeDifference, Pause;
  6.  
  7.   PROCEDURE TimeDifference(start, end: Time): REAL;
  8.  
  9.   PROCEDURE Pause(seconds: REAL);
  10.  
  11.   END ClockUtilities.
  12.