summaryrefslogtreecommitdiff
path: root/src/tst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tst.c')
-rw-r--r--src/tst.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tst.c b/src/tst.c
new file mode 100644
index 0000000..3ec7ce9
--- /dev/null
+++ b/src/tst.c
@@ -0,0 +1,13 @@
+/* Simple test for fdb.a
+*/
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "fdb.h"
+
+int main(int argc, char *argv[])
+{
+ FDB_Init(20);
+
+ return EXIT_SUCCESS;
+}