Fixed warnings and errors so ReactOS can be compiled with GCC 3.2.
[reactos.git] / reactos / lib / msvcrt / math / j0_y0.c
1 #include <msvcrt/math.h>
2
3 double _j0(double x)
4 {
5 return x;
6 }
7
8 double _y0(double x)
9 {
10 return x;
11 }
12