blob: b774931f4310633f14b56d6640b944ba325bf46c (
plain) (
blame)
1
2
3
4
5
6
7
|
/* Generic implementations for float and double always use the builtin. */
#define USE_COPYSIGNL_BUILTIN 1
#if __GNUC_PREREQ (7, 0)
# define USE_COPYSIGNF128_BUILTIN 1
#else
# define USE_COPYSIGNF128_BUILTIN 0
#endif
|