Kernel+LibC: Move LibC/signal_numbers.h to Kernel/API/POSIX

Make Userland and Tests users just include signal.h, and move Kernel
users to the new API file.
This commit is contained in:
Andrew Kaster 2023-01-07 10:54:01 -07:00 committed by Andrew Kaster
commit 046c23f567
Notes: sideshowbarker 2024-07-17 04:34:25 +09:00
11 changed files with 7 additions and 9 deletions

View file

@ -8,11 +8,11 @@
#include <AK/ScopeGuard.h>
#include <AK/StringView.h>
#include <Kernel/API/POSIX/errno.h>
#include <Kernel/API/POSIX/signal_numbers.h>
#include <Kernel/Debug.h>
#include <Kernel/InterruptDisabler.h>
#include <Kernel/Process.h>
#include <Kernel/TTY/TTY.h>
#include <LibC/signal_numbers.h>
#include <LibC/sys/ioctl_numbers.h>
#define TTYDEFCHARS
#include <LibC/sys/ttydefaults.h>