From 1946a4bee66f2061192e51caf9cb49a3ebda5211 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 14 Apr 2021 01:51:32 +0200 Subject: [PATCH] LibC: Add missing include in The include is necessary for __BEGIN_DECLS and __END_DECLS. --- Userland/Libraries/LibC/syslog.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibC/syslog.h b/Userland/Libraries/LibC/syslog.h index eedebdc277..c23597a7d9 100644 --- a/Userland/Libraries/LibC/syslog.h +++ b/Userland/Libraries/LibC/syslog.h @@ -27,6 +27,7 @@ #pragma once #include +#include __BEGIN_DECLS