Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/main
/
.
/
Tests
/
RunCMake
/
PrecompileHeaders
/
foobar.c
blob: 71ebe370e1ad3784a51582a54b97dfbf462f8816 [
file
] [
edit
]
#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
;
}