19 lines · c
1# // null directive and comments before include guard2 3#ifndef MULTIPLE_INCLUSION_OPT4 5int foo();6 7// The position of the define should not matter8#define MULTIPLE_INCLUSION_OPT9 10int bar();11 12#endif13 14#15#16/* Two null directives17 and a multiline comment18 after the #endif */19