1
0
mirror of https://github.com/rfivet/stm32bringup.git synced 2024-06-09 01:20:44 +00:00

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

View File

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