Rich Felker
преди 13 години
родител
ревизия
bf9d9dcaa6
|
@@ -0,0 +1,6 @@
|
|
|
+#include <math.h>
|
|
|
+
|
|
|
+double nan(const char *s)
|
|
|
+{
|
|
|
+ return NAN;
|
|
|
+}
|
|
@@ -0,0 +1,6 @@
|
|
|
+#include <math.h>
|
|
|
+
|
|
|
+float nanf(const char *s)
|
|
|
+{
|
|
|
+ return NAN;
|
|
|
+}
|
|
@@ -0,0 +1,6 @@
|
|
|
+#include <math.h>
|
|
|
+
|
|
|
+long double nanl(const char *s)
|
|
|
+{
|
|
|
+ return NAN;
|
|
|
+}
|