shithub: plan9front

ref: 9d471caaae56a734728c3b19755adfe26f6c4f4c
dir: /sys/src/ape/lib/v/nap.c/

View raw version
void
nap(int n)
{
	register i;

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