1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:37:34 +00:00

LibC: Add missing include in <syslog.h>

The include is necessary for __BEGIN_DECLS and __END_DECLS.
This commit is contained in:
Gunnar Beutner 2021-04-14 01:51:32 +02:00 committed by Andreas Kling
parent cd7512a2ad
commit 1946a4bee6

View file

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