Console* initConsole(Controller* ctrl){
    if (ctrl == NULL)
        return NULL;
    Console* c = (Console*)malloc(sizeof(Console));
    c->ctrl = ctrl;
    return c;
}
expected '=', ',', ';', 'asm' or 'attribute' before '{' token
This error appears in one of my modules.For some functions the "{" wasn't on the same row as the header of the function so I pressed a backspace,saved and debuged.The module was clean but the error went to another module and I have no ideea of what's wrong.
 
     
    