]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/redundant-libs/baz.c
Rollup merge of #106661 - mjguzik:linux_statx, r=Mark-Simulacrum
[rust.git] / tests / run-make-fulldeps / redundant-libs / baz.c
1 extern void foo1();
2 extern void foo2();
3
4 void baz() {
5   foo1();
6   foo2();
7 }