mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
26 lines
287 B
Text
26 lines
287 B
Text
/*
|
|
* 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);
|
|
}
|