aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/time.h
blob: 4f457cb5ad01916cfce5476bb988c1a3477a1cac (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _POSIX_TIME_H
#define _POSIX_TIME_H

#include <sys/time.h>
#define CLOCK_MONOTONIC	2
#include_next <time.h>

int nanosleep(const struct timespec *req, struct timespec *rem);

#endif /* _POSIX_TIME_H */