From 018bae577a9ba0abafe5d8176e55ed4fc1f523a9 Mon Sep 17 00:00:00 2001 From: "Gu://em_" Date: Fri, 19 Dec 2025 20:13:58 +0100 Subject: [PATCH] et on dis ciao aux clang format --- minimake/src/minimake.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/minimake/src/minimake.c b/minimake/src/minimake.c index ff913ab..4368296 100644 --- a/minimake/src/minimake.c +++ b/minimake/src/minimake.c @@ -18,14 +18,14 @@ // Static variables -char *program_name; +static char *program_name; -struct hash_map *variables = NULL; -struct hash_map *rules = NULL; +static struct hash_map *variables = NULL; +static struct hash_map *rules = NULL; // Keeps track of variables and rules order -struct list *variables_list = NULL; -struct list *rules_list = NULL; +static struct list *variables_list = NULL; +static struct list *rules_list = NULL; // ==== Misc ====