:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / math / jn_yn.c
1 #include <crtdll/math.h>
2
3 double _jn(int n, double x)
4 {
5         return x;
6 }
7
8 double _yn(int n, double x) 
9 {
10         return x;
11 }