df8oe / UHSDR

SDR firmware and bootloader with configuration files for use with Eclipse, EmBitz and Makefile
Other
356 stars 186 forks source link

Fixed () vs. (void) signature #1872

Closed db4ple closed 4 years ago

db4ple commented 4 years ago

In C we must use func(void) as declaration in order to have the compiler complain about void functions being called with arguments. C++ does not need this.

This is in response to #1871