diff options
Diffstat (limited to 'sysdeps/stub/k_cosl.c')
-rw-r--r-- | sysdeps/stub/k_cosl.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/stub/k_cosl.c b/sysdeps/stub/k_cosl.c new file mode 100644 index 0000000000..3e6c9688f0 --- /dev/null +++ b/sysdeps/stub/k_cosl.c @@ -0,0 +1,11 @@ +#include <math.h> +#include <stdio.h> + +long double +__kernel_cosl (long double x, long double y) +{ + fputs ("__kernel_cosl not implemented\n", stderr); + return 0.0; +} + +stub_warning (__kernel_cosl) |