home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / c / advc11.arc / MISC.C < prev    next >
Text File  |  1987-02-06  |  140b  |  10 lines

  1. void delay(seconds)
  2.    unsigned int seconds;
  3. {
  4.    long dtime;
  5.  
  6.    dtime = time(NULL) + seconds;
  7.  
  8.    while (dtime != time(NULL));
  9. }
  10.