]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/stub/e_logl.c
Update.
[thirdparty/glibc.git] / sysdeps / stub / e_logl.c
index b8357543b017c15969e0fa2dd081d7290096c3b9..45248a375aef91de716f54ee62cbe81d0dcc1287 100644 (file)
@@ -1,10 +1,12 @@
 #include <math.h>
 #include <stdio.h>
+#include <errno.h>
 
 long double
 __ieee754_logl (long double x)
 {
   fputs ("__ieee754_logl not implemented\n", stderr);
+  __set_errno (ENOSYS);
   return 0.0;
 }