1
Fork 0
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:
Andreas Kling 2019-09-03 21:14:42 +02:00
parent 6fb7eeb81a
commit 9ffe8feff4

View file

@ -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;