diff options
Diffstat (limited to 'toys/hello.c')
-rw-r--r-- | toys/hello.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/hello.c b/toys/hello.c index 1f587723..bb344e93 100644 --- a/toys/hello.c +++ b/toys/hello.c @@ -5,8 +5,7 @@ #include "toys.h" -int hello_main(void) +void hello_main(void) { printf("Hello world\n"); - return 0; } |