Avoid warning if compiled with -Wstrict-prototypes.

This commit is contained in:
Renaud 2020-12-02 13:03:38 +08:00
parent a337a39509
commit d92085923a
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
int main( void) {
puts( "hello, world") ;
return EXIT_SUCCESS ;
}