diff options
Diffstat (limited to 'src/math/yn.c')
| -rw-r--r-- | src/math/yn.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/math/yn.c b/src/math/yn.c new file mode 100644 index 00000000..4b6ac1a6 --- /dev/null +++ b/src/math/yn.c @@ -0,0 +1,10 @@ +#include <math.h> + +double yn(int n, double x) +{ + return x; +} + +/* +XOPEN(4) +*/ |
