Quite often in ANSI C code I can see parenthesis sorrounding a single return value.
Like this:-
int foo(int x) {
if (x)
return (-1);
else
return (0);
}
Why use () around the return value in those cases? Any ideas? I can see no reason for that.