home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / duucp-1.17 / AU-117b4-src.lha / src / lib / sleep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-24  |  222 b   |  21 lines

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