home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / TURBOPAS / PASUTIL1.ZIP / TIMI.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1985-12-28  |  512 b   |  14 lines

  1. INTERFACE;
  2.  
  3. UNIT TIM (EXACTTIME,DELAY);
  4.  
  5. PROCEDURE EXACTTIME (VAR hrs, mins, secs: REAL);
  6. PROCEDURE DELAY (wsecs: REAL);
  7.  
  8. { This part of the program merely shows how an interface for a unit is
  9.   constructed, and then how this interface can be included in both the
  10.   implementation of the unit and in a program that uses that unit; this 
  11.   is done with the $INCLUDE metacommand for IBM Pascal. }
  12.  
  13. BEGIN
  14. END;