LibC: Make poll and epoll macros match with each other

This was an assertion in one of my ports and I couldn't be bothered to
write a patch for it :D
This commit is contained in:
2025-11-09 16:37:00 +02:00
parent 95fda5dfb7
commit 4288f70d04
2 changed files with 11 additions and 11 deletions

View File

@@ -29,9 +29,9 @@ struct epoll_event
#define EPOLLIN 0x01
#define EPOLLOUT 0x02
#define EPOLLPRI 0x04
#define EPOLLERR 0x08
#define EPOLLHUP 0x10
#define EPOLLERR 0x04
#define EPOLLHUP 0x08
#define EPOLLPRI 0x10
#define EPOLLET 0x20
#define EPOLLONESHOT 0x40