aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/time.h
blob: ce75f321eaa1a30e1902b26ad51b02ebc535468f (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
int clock_gettime(clockid_t clock_id, struct timespec *tp);

#endif /* _POSIX_TIME_H */