Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
include
wasm-wasi-musl
__struct_pollfd.h
pretty
plain
permalink
blame
history
•
10 lines
•
151 B
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