Sign in
fuchsia
/
third_party
/
cmake
/
31de823fcd81d0c5565b72c995ff34149544474a
/
.
/
Tests
/
RunCMake
/
PrecompileHeaders
/
foobar.c
blob: 97d465c01c5bdb7ae88daa1230635aa5a4cf734b [
file
] [
log
] [
blame
]
#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
;
}