home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / 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.