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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-12-29
|
162 b
|
12 lines
#include <stdio.h>
void delay(seconds)
unsigned int seconds;
{
long dtime;
dtime = time(NULL) + seconds;
while (dtime != time(NULL));
}