home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / mike40c / wait.c < prev   
Encoding:
Text File  |  1986-10-23  |  160 b   |  12 lines

  1. wait(secs)  /* Wait secs and return */
  2. int secs;
  3. {
  4.     long st, en;
  5.     time(&st);
  6.     en = st;
  7.     while ((en - st) < secs)
  8.         time(&en);
  9. }
  10.  
  11.  
  12.