diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 13:30:57 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 13:30:57 +0100 |
commit | 3f29a12d9023de3bf27fa7606f07285bcb5d1732 (patch) | |
tree | c7918a76b00767adb0e67c46ce941ecbc6aeae48 /Kernel/Syscall.h | |
parent | cccc8d8aeb0e204283c76ccb0e92fba2e2a0071c (diff) | |
download | serenity-3f29a12d9023de3bf27fa7606f07285bcb5d1732.zip |
More compat work. Rename libraries from LibFoo.a => libfoo.a
This makes it more straightforward to build a cross-compiler toolchain.
Also move math stuff from LibC to LibM.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index 4621da47d9..5a05b82c6e 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -1,6 +1,7 @@ #pragma once #include <AK/Types.h> +#include <LibC/fd_set.h> #define ENUMERATE_SYSCALLS \ __ENUMERATE_SYSCALL(sleep) \ @@ -83,10 +84,6 @@ __ENUMERATE_SYSCALL(link) \ -#ifdef SERENITY -struct fd_set; -#endif - namespace Syscall { enum Function { |