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

#include <unistd.h>

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