home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / uucp-1.04 / unix / sleep.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-13  |  169 b   |  15 lines

  1. /* sleep.c
  2.    Sleep for a number of seconds.  */
  3.  
  4. #include "uucp.h"
  5.  
  6. #include "sysdep.h"
  7. #include "system.h"
  8.  
  9. void
  10. usysdep_sleep (c)
  11.      int c;
  12. {
  13.   (void) sleep (c);
  14. }
  15.