Explorar o código

Clean up a warning.

Manuel Novoa III %!s(int64=22) %!d(string=hai) anos
pai
achega
8780d38cca
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  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);
 }