From 5373908539bae6051c409b25b045ae9f1ae29213 Mon Sep 17 00:00:00 2001 From: coypoop Date: Sat, 4 Nov 2017 17:58:38 +0200 Subject: [PATCH] Include stdio.h for FILE so this header can be included even if it's not already included --- src/core/wee-config-file.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/wee-config-file.h b/src/core/wee-config-file.h index 44b62e12c..1d826def2 100644 --- a/src/core/wee-config-file.h +++ b/src/core/wee-config-file.h @@ -21,6 +21,8 @@ #ifndef WEECHAT_CONFIG_FILE_H #define WEECHAT_CONFIG_FILE_H +#include + #define CONFIG_BOOLEAN(option) (*((int *)((option)->value))) #define CONFIG_BOOLEAN_DEFAULT(option) (*((int *)((option)->default_value)))