diff options
author | Camil Staps | 2016-11-08 09:37:13 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-08 09:37:13 +0100 |
commit | 95f715a61017a48584ac9dc953bfa0ab92aba13f (patch) | |
tree | e069cc0cd9334333419fd82f8ef12f169d2d5e6f /interpreter/print.c | |
parent | examples (diff) |
Remove leading underscore from _FUSPEL_DEBUG and _FUSPEL_CLI
Diffstat (limited to 'interpreter/print.c')
-rw-r--r-- | interpreter/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interpreter/print.c b/interpreter/print.c index e1ed9ed..d5134c9 100644 --- a/interpreter/print.c +++ b/interpreter/print.c @@ -1,6 +1,6 @@ #include "print.h" -#ifdef _FUSPEL_DEBUG +#ifdef FUSPEL_DEBUG #include <inttypes.h> #include <stdbool.h> #include <string.h> @@ -135,7 +135,7 @@ void print_node(struct node *node) { my_free(e); } -#ifdef _FUSPEL_DEBUG +#ifdef FUSPEL_DEBUG static unsigned int file_count = 0; void free_visited_nodes(struct visited_nodes *list) { |