Browse Source

Clean up a warning.

Manuel Novoa III 22 years ago
parent
commit
8780d38cca
1 changed files with 1 additions and 3 deletions
  1. 1 3
      libm/w_cabs.c

+ 1 - 3
libm/w_cabs.c

@@ -12,9 +12,7 @@ struct complex {
 	double y;
 };
 
-double
-cabs(z)
-	struct complex z;
+double cabs(struct complex z)
 {
 	return hypot(z.x, z.y);
 }