summaryrefslogtreecommitdiff
path: root/testing/embedding/empty-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'testing/embedding/empty-test.c')
-rw-r--r--testing/embedding/empty-test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/embedding/empty-test.c b/testing/embedding/empty-test.c
new file mode 100644
index 0000000..b00dd50
--- /dev/null
+++ b/testing/embedding/empty-test.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+void initialize_my_empty_cffi(void);
+
+int main(void)
+{
+ initialize_my_empty_cffi();
+ printf("OK\n");
+ return 0;
+}
+