From 79c1e8f989ec35f6cd8bb3b7a1250321b6a79569 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 4 Sep 2024 03:04:42 -0400 Subject: Don't put __SOURCE_FILE__ in header --- compile.c | 1 - 1 file changed, 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index ab93ead4..9b6aabcc 100644 --- a/compile.c +++ b/compile.c @@ -3410,7 +3410,6 @@ CORD compile_header(env_t *env, ast_t *ast) CORD header = CORD_all( "#pragma once\n" // "#line 1 ", CORD_quoted(ast->file->filename), "\n", - "#define __SOURCE_FILE__ ", CORD_quoted(ast->file->filename), "\n" "#include \n"); for (ast_list_t *stmt = Match(ast, Block)->statements; stmt; stmt = stmt->next) -- cgit v1.2.3