changeset 1036:bafb5943cd35

misc: add missing compat.h includes
author David Demelier <markand@malikania.fr>
date Mon, 12 Apr 2021 11:16:18 +0200
parents b460e70a324d
children 8f8ce47aba8a
files lib/irccd/event.c tests/data/example-dl-plugin.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/irccd/event.c	Thu Apr 08 21:16:01 2021 +0200
+++ b/lib/irccd/event.c	Mon Apr 12 11:16:18 2021 +0200
@@ -22,6 +22,8 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include <compat.h>
+
 #include "event.h"
 #include "server.h"
 
--- a/tests/data/example-dl-plugin.c	Thu Apr 08 21:16:01 2021 +0200
+++ b/tests/data/example-dl-plugin.c	Mon Apr 12 11:16:18 2021 +0200
@@ -18,6 +18,8 @@
 
 #include <string.h>
 
+#include <compat.h>
+
 #include <irccd/event.h>
 #include <irccd/server.h>
 #include <irccd/util.h>