summaryrefslogtreecommitdiff
path: root/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
new file mode 100644
index 0000000..5812bcd
--- /dev/null
+++ b/test/test.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+
+#define SUCC 0
+#define ERROR -1
+
+extern int hello_ci_world(void);
+
+int main(void)
+{
+ printf("libhello_ci_world test starting...\n");
+ hello_ci_world();
+
+ //return SUCC;
+ return ERROR;
+}