I am getting this error in a file with C functions. The function is implemented like so:
Code:
static OSStatus installCustomMenu() {
...
}
Code:
static OSStatus installCustomMenu();
Anyone know how to get rid of it? The .m file is #import-ing the .h file normally, so it should see that it's defined in the header.