1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:18:12 +00:00

LibC: Add missing sys/cdefs.h include

Some header files use __BEGIN_DECLS without including sys/cdefs.h.
This causes issues for C code that compiles against these headers,
which may occur with Ports.
This commit is contained in:
Emily Trau 2022-08-16 01:57:43 +10:00 committed by Linus Groh
parent e70624de9f
commit abc150085f
27 changed files with 27 additions and 0 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS