diff options
Diffstat (limited to 'Tests/InterfaceLinkLibrariesDirect/order_main.c')
-rw-r--r-- | Tests/InterfaceLinkLibrariesDirect/order_main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/InterfaceLinkLibrariesDirect/order_main.c b/Tests/InterfaceLinkLibrariesDirect/order_main.c new file mode 100644 index 0000000..eed2453 --- /dev/null +++ b/Tests/InterfaceLinkLibrariesDirect/order_main.c @@ -0,0 +1,6 @@ +extern void order_A(void); +int main(void) +{ + order_A(); + return 0; +} |