From fbd0c7735b7e15c4b04c2c74ccbd44fab1acf381 Mon Sep 17 00:00:00 2001 From: root <> Date: Sun, 4 May 2025 15:11:31 +0000 Subject: [PATCH] c header files constants --- constants.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 constants.c diff --git a/constants.c b/constants.c new file mode 100644 index 0000000..9b69143 --- /dev/null +++ b/constants.c @@ -0,0 +1,11 @@ +#include +#include +#include + +// printf("x %d\n", x); +void main() { + printf("AF_UNIX %d\n", AF_UNIX); + printf("SOCK_STREAM %d\n", SOCK_STREAM); + printf("F_GETFL %d\n", F_GETFL); + printf("F_SETFL %d\n", F_SETFL); +}