35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
-
+
+
+
+
+
|
}
return matched;
}
BEGIN {
var = "[%|#][PAR|VAR]";
not_an_arg = "effort flow state internal external zero unknown\
mtt_e mtt_f sqrt exp log sign none abs";
mtt_e mtt_f\
sqrt exp log sign sin asin cos acos tan atan \
sin asin cos acos tan atan \
sinh asinh cosh acosh tanh atanh \
none abs";
arg_line = "arg = ";
}
{
## Explicit VAR declarations
if (match($1,var)>0) print $2 "\t" system_name;
## Implicit declarations from the arg list
|