rust/tests/run-make/native-lib-load-order/b.c
2024-07-19 12:27:46 -04:00

6 lines
48 B
C

extern void a(void);
void b(void) {
a();
}