aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys/linux/sys/time.h
blob: a9618d7cbac8717ea248b10e493d672baac9841d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* libc/sys/linux/sys/time.h - Time handling */

/* Written 2000 by Werner Almesberger */


#ifndef _SYS_TIME_H
#define _SYS_TIME_H

#include <sys/types.h>
#include <linux/time.h>

/* --- redundant stuff below --- */

#include <_ansi.h>

int _EXFUN(gettimeofday, (struct timeval *__p, struct timezone *__z));
int _EXFUN(settimeofday, (const struct timeval *, const struct timezone *));
int _EXFUN(utimes, (const char *__path, struct timeval *__tvp));
int _EXFUN(getitimer, (int __which, struct itimerval *__value));
int _EXFUN(setitimer, (int __which, const struct itimerval *__value,
                                        struct itimerval *__ovalue));
#endif