From: orbea <orbea@riseup.net>
Date: Sat, 18 Jun 2022 09:10:18 -0700
Subject: [PATCH] build: Fix implicit function declarations

--- a/clientparse.y
+++ b/clientparse.y
@@ -24,6 +24,9 @@
 #define YYERROR_VERBOSE
 
 static dictServer *s;
+
+int yylex();
+void yyerror(const char *s);
 %}
 
 %union {
--- a/servparse.y
+++ b/servparse.y
@@ -30,6 +30,9 @@
 
 static dictDatabase *db;
 
+int yylex();
+void yyerror(const char *s);
+
 static int string2bool (const char *str)
 {
    if (
