[DISABLE, INFORMATION, WARNING , ERROR]
A function was called without its prototype being declared before.
void f(void) {
g();
}
Prototype the function before calling it. Make sure that there is a prototype/declaration for the function. E.g. for above example:
void g(void); // having correct prototype for 'g'
void f(void) {
g();
}