1 #ifndef __wasilibc___struct_pollfd_h
2 #define __wasilibc___struct_pollfd_h
3 
4 struct pollfd {
5     int fd;
6     short events;
7     short revents;
8 };
9 
10 #endif
11