From 21153b7d1451e05d6517fa94bf79d2a5f819d074 Mon Sep 17 00:00:00 2001 From: root <> Date: Wed, 21 May 2025 09:07:58 +0000 Subject: [PATCH] EAGAIN in constants.c --- constants.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/constants.c b/constants.c index 8239355..3a8123c 100644 --- a/constants.c +++ b/constants.c @@ -2,6 +2,7 @@ #include #include #include +#include // printf("x %d\n", x); void main() { @@ -17,4 +18,6 @@ void main() { printf("POLLERR %d\n", POLLERR); printf("POLLNVAL %d\n", POLLNVAL); printf("SHUT_RDWR %d\n", SHUT_RDWR); + printf("EAGAIN %d\n", EAGAIN); + printf("EWOULDBLOCK %d\n", EWOULDBLOCK); }