s/return (foo)/return foo/

This commit is contained in:
Akim Demaille
2000-03-31 14:27:06 +00:00
parent a0f6b07611
commit 3628146521
14 changed files with 113 additions and 92 deletions
+2 -2
View File
@@ -60,7 +60,7 @@ xmalloc (register unsigned n)
done (1);
}
return (block);
return block;
}
char *
@@ -76,5 +76,5 @@ xrealloc (register char *block, register unsigned n)
done (1);
}
return (block);
return block;
}