summaryrefslogtreecommitdiff
path: root/lib/delay.c
blob: ff5ccc44984cee57484c59ac0a1ce302ccff9cee (plain)
1
2
3
4
5
6
7
8
#include <stdlib.h>

void delay(int count)
{
	while (count-- > 0)
		for (int i = 0; i < 100000; i++)
			;
}