update for HEAD-2003021201
[reactos.git] / lib / crtdll / math / jn_yn.c
1 #include <msvcrt/math.h>
2
3
4 double _jn(int n, double x)
5 {
6         return x;
7 }
8
9 double _yn(int n, double x) 
10 {
11         return x;
12 }