diff options
Diffstat (limited to 'Tests/LinkLine/Exec.c')
-rw-r--r-- | Tests/LinkLine/Exec.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/LinkLine/Exec.c b/Tests/LinkLine/Exec.c new file mode 100644 index 000000000..807a7a8cc --- /dev/null +++ b/Tests/LinkLine/Exec.c @@ -0,0 +1,9 @@ +void OneFunc(); +void TwoFunc(); + +int main() +{ + OneFunc(); + TwoFunc(); + return 0; +} |