'function' : uses old-style declarator
The specified function declaration is not in prototype form.
Old-style function declarations should be converted to prototype form.
Old style
int addrec( name, id ) char *name; int id; { }
New style
int addrec( char *name, int id ) { }