home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 6
/
Aminet 6 - June 1995.iso
/
Aminet
/
dev
/
gcc
/
libnixV0_8.lha
/
gnu
/
libnix-sources.lha
/
sources
/
amiga
/
misc
/
TimeDelay.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-12-12
|
221 b
|
10 lines
#include <devices/timer.h>
#include <clib/alib_protos.h>
LONG TimeDelay(long unit, unsigned long secs, unsigned long microsecs)
{
struct timeval time={secs, microsecs};
return DoTimer(&time, unit, TR_ADDREQUEST);
}