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