From e36f4bc4b6e7637e63d1f779ce45507b9ac2bf28 Mon Sep 17 00:00:00 2001 From: Charlie Gordon Date: Thu, 6 Jun 2024 12:35:34 +0200 Subject: [PATCH] add missing include files in headers --- libregexp.h | 2 +- libunicode.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libregexp.h b/libregexp.h index f029309..1822f93 100644 --- a/libregexp.h +++ b/libregexp.h @@ -53,7 +53,7 @@ int lre_exec(uint8_t **capture, int lre_parse_escape(const uint8_t **pp, int allow_utf16); LRE_BOOL lre_is_space(int c); -void lre_byte_swap(uint8_t *buf, size_t len, BOOL is_byte_swapped); +void lre_byte_swap(uint8_t *buf, size_t len, LRE_BOOL is_byte_swapped); /* must be provided by the user */ LRE_BOOL lre_check_stack_overflow(void *opaque, size_t alloca_size); diff --git a/libunicode.h b/libunicode.h index d815b4b..91cfbee 100644 --- a/libunicode.h +++ b/libunicode.h @@ -24,6 +24,7 @@ #ifndef LIBUNICODE_H #define LIBUNICODE_H +#include #include #define LRE_BOOL int /* for documentation purposes */