Welcome to mirror list, hosted at ThFree Co, Russian Federation.

select.h « sys « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddd2ac9d22e247ae9f9057946fdf6515aae99d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _SYS_SELECT_H
#define _SYS_SELECT_H	1

#include <sys/types.h>
#include <bits/sigset.h>
#include <time.h>

extern int select (int __nfds, fd_set *__restrict __readfds,
		   fd_set *__restrict __writefds,
		   fd_set *__restrict __exceptfds,
		   struct timeval *__restrict __timeout) __THROW;

#endif /* sys/select.h */