mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
14 lines
217 B
C
14 lines
217 B
C
/*
|
|
* sys/select.h
|
|
*/
|
|
|
|
#ifndef _SYS_SELECT_H
|
|
#define _SYS_SELECT_H
|
|
|
|
#include <sys/time.h>
|
|
#include <sys/types.h>
|
|
|
|
__extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
|
|
|
#endif /* _SYS_SELECT_H */
|