Ver código fonte

Clean up a warning.

Manuel Novoa III 22 anos atrás
pai
commit
8780d38cca
1 arquivos alterados com 1 adições e 3 exclusões
  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);
 }