summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/v/nap.c
blob: 23a1f96523f51c6b87711476f9129e058be3ffb7 (plain)
1
2
3
4
5
6
7
8
9
10
void
nap(int n)
{
	register i;

	while(n-- > 0){
		for(i = 0; i < 1000*1000*10; i++)
			;
	}
}