From 97621f5870d60722ae2bc13682c58d194bc20794 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 18 Jun 2023 11:08:31 +0200 Subject: basic cli driver --- test/hello.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/hello.c b/test/hello.c index 1e02bfc..9d21323 100644 --- a/test/hello.c +++ b/test/hello.c @@ -1,4 +1,4 @@ -printf(); -int main(int argc) { - printf("hello world\n"); +int printf(char *, ...); +int main(int argc, char **argv) { + printf("hello world\n"); } -- cgit v1.2.3