in this function
char *function(buf,salt)
char *buf;
char *salt;
{
function_body
}
I get this error
error: argument "buf" doesn't match prototype
error: prototype declaration
argument "salt" doesn't match prototype
error: prototype declaration
This is the actual code:
char * function(const char *, const char *);
char *buffer = NULL;
buffer = function(arg1, arg2);