Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_cc
/
5e719eab7954a1c9cc9628978464d92f940292f6
/
.
/
tests
/
local_includes
/
binary.c
blob: 04b5520ff1731e874c323877e03b0642c6f3cab0 [
file
]
#include
"binary_helper.h"
#include
"public.h"
#if __has_include("private.h")
#error
"private.h should not be on the include path"
#endif
int
main
()
{
if
(
foo
()
+
helper
()
==
42
)
{
return
0
;
}
else
{
return
1
;
}
}