home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / modula2 / library / tasking / clockuti.def < prev    next >
Text File  |  1986-01-31  |  229b  |  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.