mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
19 lines
157 B
C
19 lines
157 B
C
|
#include <math.h>
|
||
|
|
||
|
|
||
|
/*
|
||
|
* @unimplemented
|
||
|
*/
|
||
|
double _jn(int n, double x)
|
||
|
{
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* @unimplemented
|
||
|
*/
|
||
|
double _yn(int n, double x)
|
||
|
{
|
||
|
return x;
|
||
|
}
|