mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:07:45 +00:00
Kernel: Only #include stuff from <LibC/...> if __serenity__ is defined
This commit is contained in:
parent
6fb7eeb81a
commit
9ffe8feff4
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue