]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/diff/tests/ifdef.out
Upgrade Unbound to 1.6.0. More to follow.
[FreeBSD/FreeBSD.git] / usr.bin / diff / tests / ifdef.out
1 /*
2  * A comment 
3  *
4 #ifndef PLOP
5  * And another  bla
6 #else /* PLOP */
7  * And another bla
8 #endif /* PLOP */
9  *
10 #ifndef PLOP
11  * And yet another
12 #else /* PLOP */
13  * and yet another
14 #endif /* PLOP */
15  */
16
17 int
18 main(void)
19 {
20 #ifdef PLOP
21
22 #endif /* PLOP */
23         printf("something");
24
25         return (0);
26 }