From a5eb69f4e54454b014382d4182f5eefcc36eec10 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Sat, 2 Jul 2022 19:30:46 -0500 Subject: [PATCH] Include the proper headers for uint*_t --- include/gargoyle/privledge.h | 2 ++ include/gargoyle/scribe.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/gargoyle/privledge.h b/include/gargoyle/privledge.h index fa0a00b..47cba48 100644 --- a/include/gargoyle/privledge.h +++ b/include/gargoyle/privledge.h @@ -1,6 +1,8 @@ #ifndef __GARGOYLE_PRIVLEDGE_H_ #define __GARGOYLE_PRIVLEDGE_H_ +#include + struct gargoyle_opt { const char *brand; uint16_t brand_sz; diff --git a/include/gargoyle/scribe.h b/include/gargoyle/scribe.h index 864351c..8b64fd5 100644 --- a/include/gargoyle/scribe.h +++ b/include/gargoyle/scribe.h @@ -1,8 +1,8 @@ #ifndef __GARGOYLE_SCRIBE_H_ #define __GARGOYLE_SCRIBE_H_ +#include #include -#include uint8_t gargoyle_from_bool(struct gargoyle_opt *opt, const char *brand, const char *neg, uint16_t neg_sz, gargoyle_flag_type flags); uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand_val, gargoyle_flag_type flags);