summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/netinet
diff options
context:
space:
mode:
authorHendiadyoin1 <leon2002.la@gmail.com>2021-04-17 17:47:43 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-18 15:52:07 +0200
commitf682c9f100eeea6712f0f3325920393451d08be5 (patch)
tree826e27e91a3ee58fa998149ced9ca35827943eb1 /Userland/Libraries/LibC/netinet
parent05d140e7bd99f79021ed6150e6375bd75d9aa5dd (diff)
downloadserenity-f682c9f100eeea6712f0f3325920393451d08be5.zip
LibC: Add netinet/in_systm.h
Diffstat (limited to 'Userland/Libraries/LibC/netinet')
-rw-r--r--Userland/Libraries/LibC/netinet/in_systm.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/netinet/in_systm.h b/Userland/Libraries/LibC/netinet/in_systm.h
new file mode 100644
index 0000000000..3dcc37d44d
--- /dev/null
+++ b/Userland/Libraries/LibC/netinet/in_systm.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#pragma once
+
+#include <bits/stdint.h>
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
+
+typedef uint16_t n_short;
+typedef uint32_t n_long;
+
+typedef uint32_t n_time;
+
+__END_DECLS