Possible Duplicate:
Weird use of void
I was reading C code and came across the following. Can somebody please explain what this does.
static int do_spawn(const char *filename)
{
(void)filename;
// todo: fill this in
return -1;
}
Specifically, what is the (void)filename doing?