diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-20 21:50:25 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-05-20 21:50:58 +0300 |
commit | 6416c8feecc760807f4edf5d9c8e8be9c2df8981 (patch) | |
tree | 8a8b734e3ab97060c7ed239f6217b5985b7f1189 /lib/common.h | |
parent | 78bd565b9c54a962e28ea4865be286b0605ca941 (diff) |
feat(lib/net): network library implemented
Diffstat (limited to 'lib/common.h')
-rw-r--r-- | lib/common.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/common.h b/lib/common.h new file mode 100644 index 0000000..2ffbc9b --- /dev/null +++ b/lib/common.h @@ -0,0 +1,15 @@ +#ifndef COMMON_H +#define COMMON_H + +#define _GNU_SOURCE + +#include <stdio.h> +#include <stdint.h> +#include <stdlib.h> +#include <unistd.h> +#include <string.h> +#include <errno.h> + +#define COMMON_CONST 1 + +#endif // COMMON_H |