summaryrefslogtreecommitdiff
path: root/Tests/FunctionTest/functionTest.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FunctionTest/functionTest.c')
-rw-r--r--Tests/FunctionTest/functionTest.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/FunctionTest/functionTest.c b/Tests/FunctionTest/functionTest.c
new file mode 100644
index 000000000..e0ced6afd
--- /dev/null
+++ b/Tests/FunctionTest/functionTest.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(int argc, char* argv[])
+{
+ printf("Running command: %s with %d arguments\n", argv[0], argc);
+ return 0;
+}