shithub: plan9front

ref: 03eeebb97f014c29a4dd25d873fc6ad50da48f15
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++)
			;
	}
}