freebsd-src/usr.bin/diff/tests/ifdef.out
2017-04-20 11:32:18 +00:00

27 lines
287 B
Plaintext

/*
* 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);
}