Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / lib / crt / math / j1_y1.c
diff --git a/reactos/sdk/lib/crt/math/j1_y1.c b/reactos/sdk/lib/crt/math/j1_y1.c
deleted file mode 100644 (file)
index c179513..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <math.h>
-#include <float.h>
-#include "ieee754/ieee754.h"
-
-int *_errno(void);
-
-/*
- * @unimplemented
- */
-double _j1(double num)
-{
-  if (!_finite(num)) *_errno() = EDOM;
-  return __ieee754_j1(num);
-}
-
-/*
- * @implemented
- */
-double _y1(double num)
-{
-  double retval;
-  int fpclass = _fpclass(num);
-
-  if (!_finite(num) || fpclass == _FPCLASS_NN ||
-      fpclass == _FPCLASS_ND || fpclass == _FPCLASS_NZ)
-    *_errno() = EDOM;
-
-  retval  = __ieee754_y1(num);
-  if (_fpclass(retval) == _FPCLASS_NINF)
-  {
-    *_errno() = EDOM;
-    retval = sqrt(-1);
-  }
-  return retval;
-}