From 998ea25fb9b42d0c8fc713b19faf45aaa280ddd2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 9 Nov 2025 23:54:30 +0200 Subject: [PATCH] LibC: Add netinet/in_systm.h compatibility header --- .../libraries/LibC/include/netinet/in_systm.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 userspace/libraries/LibC/include/netinet/in_systm.h diff --git a/userspace/libraries/LibC/include/netinet/in_systm.h b/userspace/libraries/LibC/include/netinet/in_systm.h new file mode 100644 index 00000000..9c0e415c --- /dev/null +++ b/userspace/libraries/LibC/include/netinet/in_systm.h @@ -0,0 +1,16 @@ +#ifndef _NETINET_IN_SYSTM_H +#define _NETINET_IN_SYSTM_H 1 + +#include + +__BEGIN_DECLS + +#include + +typedef uint16_t n_short; +typedef uint32_t n_long; +typedef uint32_t n_time; + +__END_DECLS + +#endif