From 3a3923e57f8ec83f12d25249ae481b7290b6ef4e Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Mon, 17 Jan 2022 03:32:02 -0600 Subject: [PATCH] Fix implicit declaration of conf_new_patternfile --- grok_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/grok_config.h b/grok_config.h index 0eca357..3c141e6 100644 --- a/grok_config.h +++ b/grok_config.h @@ -21,6 +21,7 @@ struct config { void conf_init(struct config *conf); void conf_new_program(struct config *conf); +void conf_new_patternfile(struct config *conf); void conf_new_input(struct config *conf); void conf_new_input_process(struct config *conf, char *cmd); void conf_new_input_file(struct config *conf, char *filename);