summaryrefslogtreecommitdiff
path: root/klibc/klibc/include/sys/time.h
blob: 4eccf824a46aff11f4891c68e50b17b107f70286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * sys/time.h
 */

#ifndef _SYS_TIME_H
#define _SYS_TIME_H

#include <klibc/extern.h>
#include <linux/time.h>

__extern int gettimeofday(struct timeval *, struct timezone *);
__extern int settimeofday(const struct timeval *, const struct timezone *);
__extern int getitimer(int, struct itimerval *);
__extern int setitimer(int, const struct itimerval *, struct itimerval *);

#endif /* _SYS_TIME_H */