summaryrefslogtreecommitdiff
path: root/include/sys/time.h
blob: 0746f4119475a6635b10ff47faa3f421908b4c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __SYS_TIME_H
#define __SYS_TIME_H

#define __BITS_SELECT_H_
#include <bits/select.h>

struct timezone;

int select(int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
	   struct timeval *restrict);
int gettimeofday(struct timeval *, struct timezone *);
char *strtotimeval(const char *, struct timeval *);
int utimes(const char *, const struct timeval[2]);

#endif