7 lines
174 B
C
7 lines
174 B
C
#include <amd64/hpet.h>
|
|
#include <libk/std.h>
|
|
#include <sys/time.h>
|
|
|
|
/// Sleep for given amount of microseconds
|
|
void sleep_micro (size_t us) { amd64_hpet_sleep_micro (us); }
|