Fix missing-prototype errors in tests/suites

Signed-off-by: Michael Schuster <[email protected]>
This commit is contained in:
Michael Schuster
2024-08-09 10:29:58 +01:00
committed by Minos Galanakis
parent 87825ab1b2
commit 54300d4a4e
23 changed files with 64 additions and 63 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ struct buffer_data {
char *ptr;
};
void string_debug(void *data, int level, const char *file, int line, const char *str)
static void string_debug(void *data, int level, const char *file, int line, const char *str)
{
struct buffer_data *buffer = (struct buffer_data *) data;
char *p = buffer->ptr;