blob: 0e142fdf044e4e97d6574d9d73a40e827a00a83e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _SYS_EVENTFD_H_
#define _SYS_EVENTFD_H_
#include <sys/cdefs.h>
#include <asm/unistd.h>
#include <asm/termbits.h>
__BEGIN_DECLS
extern int eventfd(int count, int flags);
__END_DECLS
#endif /* _SYS_EVENTFD_H_ */
|