More tiny formatting fixes, move function names to start of line

This commit is contained in:
Pasi Kallinen
2015-11-25 10:15:41 +02:00
parent c8e83332fe
commit 943cc6057c
10 changed files with 31 additions and 12 deletions

View File

@@ -94,7 +94,8 @@ register int x;
}
/* d(N,X) == NdX == dX+dX+...+dX N times; n <= d(n,x) <= (n*x) */
int d(n, x)
int
d(n, x)
register int n, x;
{
register int tmp = n;