blob: 475131b352a6996e9fe03a19362f4141c1f85ff1 (
plain)
1
2
3
4
5
6
7
8
|
// No includes here, they need to come from the PCH
int main(void) {
// Method is implemented in pch.c.
// This makes sure that we can properly handle user defined
// pch implementation files and not only auto-generated ones.
return foo();
}
|