]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/extern-fn-mangle/test.c
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / run-make-fulldeps / extern-fn-mangle / test.c
1 #include <stdint.h>
2
3 uint32_t foo();
4 uint32_t bar();
5
6 uint32_t add() {
7         return foo() + bar();
8 }