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