home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / vp21beta.zip / LRTLSRC.RAR / LIBC_5.PAS next >
Pascal/Delphi Source File  |  2000-08-15  |  160b  |  15 lines

  1. unit libc_5;
  2.  
  3. interface
  4.  
  5. {$OrgName+}
  6.  
  7. procedure sleep(const s:longint);
  8.  
  9. implementation
  10.  
  11. procedure sleep;                        external;
  12.  
  13. end.
  14.  
  15.