From e33a621376da1280ae0d986975434af56587986e Mon Sep 17 00:00:00 2001 From: Craig Turner Date: Mon, 15 Jan 2024 10:49:36 +0100 Subject: [PATCH] Removes redundant block from parser.c --- src/parser.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/parser.c b/src/parser.c index 569ad89a..d544bd2b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2386,9 +2386,6 @@ void read_global_statement() block_t *block = &BLOCKS[0]; /* global block */ if (lex_peek(T_include, token)) { - if (!strcmp(token_str, "")) { - /* ignore, we include libc by default */ - } lex_expect(T_include); } else if (lex_accept(T_define)) { char alias[MAX_VAR_LEN];