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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
48 B
C
Raw Normal View History

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