Linux: Add missing scheduler constants to <sched.h>
[glibc.git] / sysdeps / ieee754 / ldbl-128 / s_fabsl.c
blob2e5ea3f413bc77e746de46098855884224ec908d
1 /* s_fabsl.c -- long double version of s_fabs.c.
2 */
4 /*
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
11 * is preserved.
12 * ====================================================
15 #if defined(LIBM_SCCS) && !defined(lint)
16 static char rcsid[] = "$NetBSD: $";
17 #endif
20 * fabsl(x) returns the absolute value of x.
23 #include <math.h>
24 #include <math_private.h>
25 #include <libm-alias-ldouble.h>
27 _Float128
28 __fabsl (_Float128 x)
30 return __builtin_fabsl (x);
32 libm_alias_ldouble (__fabs, fabs)