]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/k_sinl.c
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[thirdparty/glibc.git] / sysdeps / generic / k_sinl.c
CommitLineData
cccda09f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
b6e20712 4#include "math_private.h"
cccda09f
UD
5
6long double
b6e20712 7__kernel_sinl (long double x, long double y, int iy)
cccda09f
UD
8{
9 fputs ("__kernel_sinl not implemented\n", stderr);
d705269e 10 __set_errno (ENOSYS);
cccda09f
UD
11 return 0.0;
12}
13
14stub_warning (__kernel_sinl)
f2ea0f5b 15#include <stub-tag.h>