summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/tests/ifdef.out
blob: cc72cac0863538197434f7ac7ce17597e37ec9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * A comment 
 *
#ifndef PLOP
 * And another  bla
#else /* PLOP */
 * And another bla
#endif /* PLOP */
 *
#ifndef PLOP
 * And yet another
#else /* PLOP */
 * and yet another
#endif /* PLOP */
 */

int
main(void)
{
#ifdef PLOP

#endif /* PLOP */
	printf("something");

	return (0);
}
OpenPOWER on IntegriCloud