shithub: plan9front

ref: 54e1b8431e7888fc194fa1b45daf57e70ca78dd1
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++)
			;
	}
}