From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- include/bits/in_addr.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/bits/in_addr.h (limited to 'include/bits/in_addr.h') diff --git a/include/bits/in_addr.h b/include/bits/in_addr.h new file mode 100644 index 00000000..1d7ac0af --- /dev/null +++ b/include/bits/in_addr.h @@ -0,0 +1,14 @@ +#ifndef __BITS_IN_ADDR_H +#define __BITS_IN_ADDR_H + +#ifndef __BITS_IN_ADDR_H_ +#error "Internal header — include the public API header instead." +#endif + +typedef __UINT32_TYPE__ in_addr_t; + +struct in_addr { + in_addr_t s_addr; +}; + +#endif -- cgit v1.2.3