mirror of
https://github.com/reactos/reactos.git
synced 2025-06-18 03:25:35 +00:00
18 lines
157 B
C
18 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;
|
|
}
|