rust/tests/run-make/native-lib-load-order/b.c

6 lines
48 B
C

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