blob: 841c49d3fa1346afddf95c3e2d907b644ef530d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*?$OpenBSD: sleep.c,v 1.1 1998/03/29 22:24:53 espie Exp $?*/
#include <sys/types.h>
#include <unistd.h>
#include <proto/dos.h>
/* cheap sleep, but we don't need a good one */
u_int
sleep(u_int n)
{
(void)Delay(50 * n);
return 0;
}
|