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