Home | History | Annotate | Line # | Download | only in lint1
d_c99_complex_split.c revision 1.2
      1  1.2  christos int b(double a) {
      2  1.2  christos 	return a == 0;
      3  1.2  christos }
      4  1.1  christos void a(void) {
      5  1.1  christos     double _Complex z = 0;
      6  1.2  christos     if (b(__real__ z) && b(__imag__ z))
      7  1.1  christos 	return;
      8  1.1  christos }
      9