Fresh Pelles C, console project, default settings. A code:
#include <stdio.h>
int xyzzy()
{
return 0;
}
int main(void)
{
xyzzy();
return 0;
}
produces the following error message:
Building test.obj.
pellesc650-test\test.c(4): warning #2027: Missing prototype for 'xyzzy'.
*** Error code: 1 ***
Is it ok?