aboutsummaryrefslogtreecommitdiff
path: root/test/stubbed/util/delay.h
blob: db61690d1ec1bd2c6629deacaae706766b496297 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef STUB_UTIL_DELAY
#define STUB_UTIL_DELAY

#include <unistd.h>

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