From d92085923a38eaa8b0dbd42e841d3f15ea6eab79 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Wed, 2 Dec 2020 13:03:38 +0800 Subject: [PATCH] Avoid warning if compiled with -Wstrict-prototypes. --- hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.c b/hello.c index a194562..3b89f85 100644 --- a/hello.c +++ b/hello.c @@ -5,7 +5,7 @@ #include #include -int main() { +int main( void) { puts( "hello, world") ; return EXIT_SUCCESS ; }