home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
telecom
/
uucp_442
/
src
/
lib
/
sleep.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-08
|
317b
|
24 lines
/*
* SLEEP.C
*
* $Header: Beta:src/uucp/src/lib/RCS/sleep.c,v 1.1 90/02/02 12:08:34 dillon Exp Locker: dillon $
*
* (C) Copyright 1989-1990 by Matthew Dillon, All Rights Reserved.
*
*/
#include <stdio.h>
#include "config.h"
Prototype void sleep(int);
void
sleep(n)
int n;
{
if (n)
Delay(50*n);
}