From f762545ecf2d1e66095e7afc697a860d9d67d971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 17 Sep 2022 15:41:56 +0200 Subject: [PATCH] Add missing header include Needed for size_t and strrchr(3) while processing with a LSP. --- src/util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util.h b/src/util.h index d2f3fd68..5e524458 100644 --- a/src/util.h +++ b/src/util.h @@ -18,6 +18,8 @@ #define UTIL_H #include +#include +#include // ignore conversions discarding const specifier, e.g. // const char [] -> char *