aboutsummaryrefslogtreecommitdiff
path: root/test/stubbed/util/delay.h
blob: ce4323eba25b280d69fe0069ea0b8be417ec6a56 (plain) (blame)
1
2
3
4
5
#include <unistd.h>

void _delay_ms(int ms) {
  usleep(ms * 1000);
}