blob: 5f34e74490fe6f79d7866eeb7434b384725c6247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __SYS_TIME_H
#define __SYS_TIME_H
#define __BITS_SELECT_H_
#include <bits/select.h>
#undef __BITS_SELECT_H_
int select(int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
struct timeval *restrict);
int utimes(const char *, const struct timeval[2]);
#endif
|