
/*
 *  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 "protos.h"
#include "config.h"

Prototype void sleep(int);

void
sleep(n)
int n;
{
    if (n)
	Delay(50*n);
}

