NetBSD/games/larn/nap.c

25 lines
482 B
C
Raw Normal View History

/* $NetBSD: nap.c,v 1.5 1997/10/18 20:03:36 christos Exp $ */
1993-03-21 12:45:37 +03:00
/* nap.c Larn is copyrighted 1986 by Noah Morgan. */
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: nap.c,v 1.5 1997/10/18 20:03:36 christos Exp $");
#endif /* not lint */
#include <unistd.h>
#include "header.h"
#include "extern.h"
1993-03-21 12:45:37 +03:00
/*
* routine to take a nap for n milliseconds
*/
void
1993-03-21 12:45:37 +03:00
nap(x)
int x;
{
if (x <= 0)
return; /* eliminate chance for infinite loop */
1993-03-21 12:45:37 +03:00
lflush();
usleep(x * 1000);
}