summaryrefslogtreecommitdiff
path: root/src/complex/_Complex_I.h
blob: beded4ab132138b2ff0ceadbb7334c6708db1215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <complex.h>

#define _Complex_I \
	 (((union { \
		float _Complex __c; \
		float __f[2]; \
	}){ .__f = { 0.0, 1.0 } }).__c)


/*
STDC(199901)
*/