summaryrefslogtreecommitdiff
path: root/htk_io/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'htk_io/init.c')
-rw-r--r--htk_io/init.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/htk_io/init.c b/htk_io/init.c
new file mode 100644
index 0000000..edd454f
--- /dev/null
+++ b/htk_io/init.c
@@ -0,0 +1,8 @@
+#include "../nerv/common.h"
+#include <stdio.h>
+
+extern void tnet_io_init(lua_State *L);
+int luaopen_libhtkio(lua_State *L) {
+ tnet_io_init(L);
+ return 1;
+}