You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
195 B

#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;
}