c header files constants

This commit is contained in:
root 2025-05-04 15:11:31 +00:00
parent 44d1729d94
commit fbd0c7735b

11
constants.c Normal file
View file

@ -0,0 +1,11 @@
#include <stdio.h>
#include <sys/socket.h>
#include <fcntl.h>
// 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);
}