Serenity Operating System
1/*
2 * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <Kernel/API/POSIX/dirent.h>
10#include <Kernel/API/POSIX/fcntl.h>
11#include <Kernel/API/POSIX/futex.h>
12#include <Kernel/API/POSIX/net/if.h>
13#include <Kernel/API/POSIX/net/if_arp.h>
14#include <Kernel/API/POSIX/net/route.h>
15#include <Kernel/API/POSIX/netinet/in.h>
16#include <Kernel/API/POSIX/poll.h>
17#include <Kernel/API/POSIX/sched.h>
18#include <Kernel/API/POSIX/serenity.h>
19#include <Kernel/API/POSIX/signal.h>
20#include <Kernel/API/POSIX/stdio.h>
21#include <Kernel/API/POSIX/sys/mman.h>
22#include <Kernel/API/POSIX/sys/ptrace.h>
23#include <Kernel/API/POSIX/sys/socket.h>
24#include <Kernel/API/POSIX/sys/stat.h>
25#include <Kernel/API/POSIX/sys/statvfs.h>
26#include <Kernel/API/POSIX/sys/time.h>
27#include <Kernel/API/POSIX/sys/times.h>
28#include <Kernel/API/POSIX/sys/uio.h>
29#include <Kernel/API/POSIX/sys/un.h>
30#include <Kernel/API/POSIX/sys/utsname.h>
31#include <Kernel/API/POSIX/sys/wait.h>
32#include <Kernel/API/POSIX/termios.h>
33#include <Kernel/API/POSIX/time.h>
34#include <Kernel/API/POSIX/ucontext.h>
35#include <Kernel/API/POSIX/unistd.h>