From 9812f88a9a612144bea02c7acf499867eb0cbeb9 Mon Sep 17 00:00:00 2001 From: lemon Date: Mon, 13 Oct 2025 19:06:52 +0200 Subject: implement most of preprocessor - concatenation (##) - builtin macros (__FILE__ etc) - fails in some edge cases, and code needs cleanup - add embedded system include files (stddef.h, stdarg.h for now) - can handle stdio.h now --- test/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/hello.c') diff --git a/test/hello.c b/test/hello.c index 9d21323..e27be8d 100644 --- a/test/hello.c +++ b/test/hello.c @@ -1,4 +1,4 @@ -int printf(char *, ...); +#include int main(int argc, char **argv) { printf("hello world\n"); } -- cgit v1.2.3