]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_c99_complex_split.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_c99_complex_split.c
1 int b(double a) {
2         return a == 0;
3 }
4 void a(void) {
5     double _Complex z = 0;
6     if (b(__real__ z) && b(__imag__ z))
7         return;
8 }