home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
c
/
advc11.arc
/
MISC.C
< prev
next >
Wrap
Text File
|
1987-02-06
|
140b
|
10 lines
void delay(seconds)
unsigned int seconds;
{
long dtime;
dtime = time(NULL) + seconds;
while (dtime != time(NULL));
}