From f7b58d3c0da8bd9883f42b2c1c5cbda4eb91e660 Mon Sep 17 00:00:00 2001 From: rcombs Date: Thu, 17 Feb 2022 17:59:40 -0600 Subject: [PATCH] Include stdio.h from editline.h Fixes `#include ` without first including ``, which previously errored at the missing typedef for `FILE`. --- include/editline.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/editline.h b/include/editline.h index 7ae8810..b32e2df 100644 --- a/include/editline.h +++ b/include/editline.h @@ -21,6 +21,8 @@ #ifndef EDITLINE_H_ #define EDITLINE_H_ +#include + /* Handy macros when binding keys. */ #define CTL(x) ((x) & 0x1F) #define ISCTL(x) ((x) && (x) < ' ')