Blame SOURCES/0004-parser_bison-Fix-for-implicit-declaration-of-isalnum.patch

195495
From f09f39704d8bfa15d236b6891aabef270ec43d73 Mon Sep 17 00:00:00 2001
195495
From: Phil Sutter <phil@nwl.cc>
195495
Date: Fri, 11 Jun 2021 16:03:32 +0200
195495
Subject: [PATCH] parser_bison: Fix for implicit declaration of isalnum
195495
195495
Have to include ctype.h to make it known.
195495
195495
Fixes: e76bb37940181 ("src: allow for variables in the log prefix string")
195495
Signed-off-by: Phil Sutter <phil@nwl.cc>
195495
(cherry picked from commit 7c3b2a7acbdc793b822a230ec0c28086c7d0365d)
195495
Signed-off-by: Phil Sutter <psutter@redhat.com>
195495
---
195495
 src/parser_bison.y | 1 +
195495
 1 file changed, 1 insertion(+)
195495
195495
diff --git a/src/parser_bison.y b/src/parser_bison.y
195495
index 519e8efe5ab7e..8644f66106496 100644
195495
--- a/src/parser_bison.y
195495
+++ b/src/parser_bison.y
195495
@@ -10,6 +10,7 @@
195495
 
195495
 %{
195495
 
195495
+#include <ctype.h>
195495
 #include <stddef.h>
195495
 #include <stdio.h>
195495
 #include <inttypes.h>
195495
-- 
195495
2.31.1
195495