sifive / freedom-u540-c000-bootloader

Freedom U540-C000 Bootloader Code
Other
85 stars 38 forks source link

Fix functions taking no arguments #4

Closed esmil closed 6 years ago

esmil commented 6 years ago

In C, unlike C++, "int f();" declares a function that takes an unspecified number of arguments, whereas "int f(void);" declares a function that takes no arguments.