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