cmake/Tests/InterfaceLinkLibrariesDirect/order_main.c

7 lines
71 B

extern void order_A(void);
int main(void)
{
order_A();
return 0;
}