From 05d2196a69e746cc57a94c67c56238ba4fabd41d Mon Sep 17 00:00:00 2001 From: Arthur Grillo Date: Wed, 30 Aug 2023 12:25:04 -0300 Subject: [PATCH] cevil: Fix includes Some includes where on `test_cevil.c` instead of `cevil.h`. To fix that move the includes to `cevil.h`. --- cevil.h | 2 ++ test_cevil.c | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cevil.h b/cevil.h index 66810a5..373bb27 100644 --- a/cevil.h +++ b/cevil.h @@ -20,7 +20,9 @@ void cevil_print_error(struct cevil_error *err); #ifdef CEVIL_IMPLEMENTATION +#include #include +#include #include #include diff --git a/test_cevil.c b/test_cevil.c index b854de9..b871266 100644 --- a/test_cevil.c +++ b/test_cevil.c @@ -1,6 +1,4 @@ -#include #include -#include #define CEVIL_IMPLEMENTATION #include "cevil.h"