From 6416c8feecc760807f4edf5d9c8e8be9c2df8981 Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Tue, 20 May 2025 21:50:25 +0300 Subject: feat(lib/net): network library implemented --- lib/common.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/common.h (limited to 'lib/common.h') 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 +#include +#include +#include +#include +#include + +#define COMMON_CONST 1 + +#endif // COMMON_H -- cgit mrf-deployment