]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/stub/e_j0l.c
Update.
[thirdparty/glibc.git] / sysdeps / stub / e_j0l.c
index c16e8a8a9dc064a6ac3859c8e9b8cb8ee1f27c9c..ecb8a8ed168ff4d68b655029843599236ae9a8ca 100644 (file)
@@ -1,10 +1,12 @@
 #include <math.h>
 #include <stdio.h>
+#include <errno.h>
 
 long double
 __ieee754_j0l (long double x)
 {
   fputs ("__ieee754_j0l not implemented\n", stderr);
+  __set_errno (ENOSYS);
   return 0.0;
 }
 
@@ -14,6 +16,7 @@ long double
 __ieee754_y0l (long double x)
 {
   fputs ("__ieee754_y0l not implemented\n", stderr);
+  __set_errno (ENOSYS);
   return 0.0;
 }