home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d109 / uupc.lha / UUpc / Source / LOCAL / sleep.c < prev    next >
Text File  |  1987-10-28  |  297b  |  11 lines

  1. /*--------------------------------------------------------------*/
  2. /* sleep.c:    Implement sleep( seconds ) on the Amiga.    */
  3. /*--------------------------------------------------------------*/
  4.  
  5. void sleep( seconds )
  6. unsigned int seconds;
  7. {
  8.      if ( seconds > 0 )
  9.     Delay( (long)( seconds * 50L ));
  10. }
  11.