1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:57:46 +00:00

LibC: Add netinet/in.h

This commit is contained in:
Andreas Kling 2019-03-13 15:09:54 +01:00
parent a9dc332a11
commit 48431b3535

12
LibC/netinet/in.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <sys/cdefs.h>
#include <stdint.h>
__BEGIN_DECLS
typedef uint32_t in_addr_t;
#define INADDR_ANY ((in_addr_t)0)
__END_DECLS