diff options
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index d0690a676f..49478ec614 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -1,7 +1,10 @@ #pragma once #include <AK/Types.h> -#include <LibC/fd_set.h> + +#ifdef __serenity__ +# include <LibC/fd_set.h> +#endif extern "C" { struct timeval; |