brintos

brintos / llvm-project-archived public Read only

0
0
Text · 276 B · d346c9d Raw
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