1 /* s_sincosl.c -- long double version of s_sincos.c
2  *
3  * Copyright (C) 2013 Elliot Saba
4  * Developed at the University of Washington
5  *
6  * Permission to use, copy, modify, and distribute this
7  * software is freely granted, provided that this notice
8  * is preserved.
9  * ====================================================
10 */
11 
12 void
sincosl(long double x,long double * s,long double * c)13 sincosl( long double x, long double * s, long double * c )
14 {
15     *s = _sinl( x );
16     *c = _cosl( x );
17 }
18 
19 #if __LDBL_MANT_DIG__ == 113
20 #if defined(_HAVE_ALIAS_ATTRIBUTE)
21 #ifndef __clang__
22 #pragma GCC diagnostic ignored "-Wmissing-attributes"
23 #endif
24 __strong_reference(sincosl, __sincosieee128);
25 #endif
26 #endif
27