Add pollfd to socket.h

This commit is contained in:
Jack Garrard 2022-09-05 03:26:14 -07:00
parent f417d39f3b
commit 009755ceba
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,12 @@
#include "../types.h"
struct pollfd
{
s32 fd;
s16 events;
s16 revents;
};
struct in_addr
{