xref: /plan9-contrib/sys/src/ape/lib/v/nap.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 nap(int n)
2 {
3 	register i;
4 
5 	while(n-- > 0){
6 		for(i = 0; i < 1000*1000*10; i++)
7 			;
8 	}
9 }
10