diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 12:33:14 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 17:11:25 -0500 |
commit | 489aec44477181afa05db41bfd04bb0febe83f59 (patch) | |
tree | e39fb2dc18198a307fddf0f72c6965a200e4c4e4 /fuzzers/config_file_fuzzer.c | |
parent | 0429894e0bd1eee077e07b22528d569c8636d6f1 (diff) | |
download | libgit2-489aec44477181afa05db41bfd04bb0febe83f59.tar.gz |
fuzzers: declare standalone functions
Diffstat (limited to 'fuzzers/config_file_fuzzer.c')
-rw-r--r-- | fuzzers/config_file_fuzzer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzzers/config_file_fuzzer.c b/fuzzers/config_file_fuzzer.c index 526c93928..582d74aff 100644 --- a/fuzzers/config_file_fuzzer.c +++ b/fuzzers/config_file_fuzzer.c @@ -10,6 +10,8 @@ #include "git2.h" #include "config_backend.h" +#include "standalone_driver.h" + #define UNUSED(x) (void)(x) int foreach_cb(const git_config_entry *entry, void *payload) |