summaryrefslogtreecommitdiff
path: root/src/unistd/usleep.c
blob: e386901719be1a38a777b8a5bf9889d29f254d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>
#include <time.h>

int usleep(useconds_t useconds)
{
	struct timespec tv = {
		.tv_sec = useconds/1000000,
		.tv_nsec = (useconds%1000000)*1000
	};
	return nanosleep(&tv, &tv);
}