2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-26 20:02:22 +00:00
rules_cc/examples/my_c_archive/main.c
2019-02-27 00:37:05 -08:00

4 lines
59 B
C

int foo();
int bar();
int main() { return foo() + bar(); }