| # | Line 78 | Line 78 | l_yn(char *nm) | |
|---|---|---|
| 78 | static double | |
| 79 | l_erf(char *nm) | |
| 80 | { | |
| 81 | < | extern double erf(); |
| 81 | > | extern double erf(double x); |
| 82 | ||
| 83 | return(erf(argument(1))); | |
| 84 | } | |
| # | Line 87 | Line 87 | l_erf(char *nm) | |
| 87 | static double | |
| 88 | l_erfc(char *nm) | |
| 89 | { | |
| 90 | < | extern double erfc(); |
| 90 | > | extern double erfc(double x); |
| 91 | ||
| 92 | return(erfc(argument(1))); | |
| 93 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |