summaryrefslogtreecommitdiff
path: root/src/math/signbit.c
blob: a5278e77c71a54935c35a0b5f0c83afb244a4465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <math.h>

#define signbit(x) \
	(sizeof(x) == sizeof(long double) ? \
		((((union { \
			long double __f; \
			char __c[sizeof(x)]; \
		}){.__f = (x)}).__c[sizeof(x)-1] & 0x80) == 0x80 ? 1 : 0) : \
	sizeof(x) == sizeof(double) ? \
		((((union { \
			double __f; \
			char __c[sizeof(x)]; \
		}){.__f = (x)}).__c[sizeof(x)-1] & 0x80) == 0x80 ? 1 : 0) : \
		(((union { \
			float __f; \
			char __c[sizeof(x)]; \
		}){.__f = (x)}).__c[sizeof(x)-1] & 0x80) == 0x80 ? 1 : 0)


/*
STDC(199901)
LINK(m)
*/