home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / lib / sleep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-29  |  215 b   |  22 lines

  1.  
  2. /*
  3.  *  SLEEP.C
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  *
  7.  */
  8.  
  9. #include <stdio.h>
  10. #include "config.h"
  11.  
  12. Prototype void sleep(int);
  13.  
  14. void
  15. sleep(n)
  16. int n;
  17. {
  18.     if (n)
  19.     Delay(50*n);
  20. }
  21.  
  22.