standardize on "return foo;" rather than "return(foo);" or "return (foo);"

This commit is contained in:
Todd C. Miller
2011-01-24 15:15:18 -05:00
parent 3316ac8ebc
commit ae2f7638f5
68 changed files with 843 additions and 843 deletions

View File

@@ -41,7 +41,7 @@ extern int errno;
#define DUMMY_BODY \
{ \
errno = EACCES; \
return(-1); \
return -1; \
}
#define DUMMY2(fn, t1, t2) \