home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / auucp+-1.02 / fuucp_plus_src.lzh / lib / sleep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-21  |  337 b   |  25 lines

  1.  
  2. /*
  3.  *  SLEEP.C
  4.  *
  5.  *  $Header: Beta:src/uucp/src/lib/RCS/sleep.c,v 1.1 90/02/02 12:08:34 dillon Exp Locker: dillon $
  6.  *
  7.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  8.  *
  9.  */
  10.  
  11. #include <stdio.h>
  12. #include "protos.h"
  13. #include "config.h"
  14.  
  15. Prototype void sleep(int);
  16.  
  17. void
  18. sleep(n)
  19. int n;
  20. {
  21.     if (n)
  22.     Delay(50*n);
  23. }
  24.  
  25.