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:
C/C++ Source or Header  |  1994-12-12  |  221 b   |  10 lines

  1. #include <devices/timer.h>
  2. #include <clib/alib_protos.h>
  3.  
  4. LONG TimeDelay(long unit, unsigned long secs, unsigned long microsecs)
  5. {
  6.   struct timeval time={secs, microsecs};
  7.  
  8.   return DoTimer(&time, unit, TR_ADDREQUEST);
  9. }
  10.