15 lines
195 B
C
15 lines
195 B
C
#include "bar.h"
|
|
#include "foo.h"
|
|
#include "foo2.h"
|
|
|
|
int main()
|
|
{
|
|
int zeroSize = 0;
|
|
|
|
#ifdef HAVE_PCH_SUPPORT
|
|
zeroSize = (int)strlen("");
|
|
#endif
|
|
|
|
return foo() + foo2() + bar() + zeroSize;
|
|
}
|