summaryrefslogtreecommitdiffstats
path: root/libc-bottom-half/headers/public/__struct_pollfd.h
blob: 45874c59106bab74b8a4bdd8f739e59225c5831d (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __wasilibc___struct_pollfd_h
#define __wasilibc___struct_pollfd_h

struct pollfd {
    int fd;
    short events;
    short revents;
};

#endif