2020-01-18 08:38:21 +00:00
|
|
|
/*
|
2021-08-14 14:03:38 +00:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 08:38:21 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-14 20:57:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-08-14 16:52:14 +00:00
|
|
|
#include <Kernel/API/POSIX/dirent.h>
|
2021-08-14 13:36:26 +00:00
|
|
|
#include <Kernel/API/POSIX/fcntl.h>
|
2021-08-14 15:12:54 +00:00
|
|
|
#include <Kernel/API/POSIX/futex.h>
|
2021-08-14 16:06:44 +00:00
|
|
|
#include <Kernel/API/POSIX/net/if.h>
|
|
|
|
#include <Kernel/API/POSIX/net/if_arp.h>
|
|
|
|
#include <Kernel/API/POSIX/net/route.h>
|
2021-08-14 14:53:38 +00:00
|
|
|
#include <Kernel/API/POSIX/netinet/in.h>
|
2021-08-14 16:57:35 +00:00
|
|
|
#include <Kernel/API/POSIX/poll.h>
|
2021-08-14 17:40:40 +00:00
|
|
|
#include <Kernel/API/POSIX/sched.h>
|
2021-08-14 16:28:05 +00:00
|
|
|
#include <Kernel/API/POSIX/serenity.h>
|
2021-08-14 15:05:53 +00:00
|
|
|
#include <Kernel/API/POSIX/signal.h>
|
2021-08-14 17:07:36 +00:00
|
|
|
#include <Kernel/API/POSIX/stdio.h>
|
2021-08-14 14:03:38 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/mman.h>
|
2021-08-14 17:35:40 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/ptrace.h>
|
2021-08-14 14:34:29 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/socket.h>
|
2021-08-14 13:42:24 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/stat.h>
|
2021-08-14 17:42:34 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/statvfs.h>
|
2021-08-14 17:24:36 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/time.h>
|
2021-08-14 17:17:32 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/times.h>
|
2021-08-14 17:38:47 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/uio.h>
|
2021-08-14 14:34:29 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/un.h>
|
2021-08-14 16:55:39 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/utsname.h>
|
2021-08-14 16:18:30 +00:00
|
|
|
#include <Kernel/API/POSIX/sys/wait.h>
|
2021-08-14 14:14:32 +00:00
|
|
|
#include <Kernel/API/POSIX/termios.h>
|
2021-08-14 13:42:24 +00:00
|
|
|
#include <Kernel/API/POSIX/time.h>
|
2021-08-14 17:03:23 +00:00
|
|
|
#include <Kernel/API/POSIX/unistd.h>
|