home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / func / advc / misc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-12-29  |  162 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. void delay(seconds)
  4.    unsigned int seconds;
  5. {
  6.    long dtime;
  7.  
  8.    dtime = time(NULL) + seconds;
  9.  
  10.    while (dtime != time(NULL));
  11. }
  12.