blob: 71ebe370e1ad3784a51582a54b97dfbf462f8816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "bar.h"
#include "foo.h"
#include "foo2.h"
int main(void)
{
int zeroSize = 0;
#ifdef HAVE_PCH_SUPPORT
zeroSize = (int)strlen("");
#endif
return foo() + foo2() + bar() + zeroSize;
}
|