summaryrefslogtreecommitdiffstats
path: root/lua-uniso.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua-uniso.c')
-rw-r--r--lua-uniso.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lua-uniso.c b/lua-uniso.c
index ec1cb91..58559de 100644
--- a/lua-uniso.c
+++ b/lua-uniso.c
@@ -12,6 +12,10 @@
#define MODULE_NAME "uniso"
+#ifndef VERSION
+#define VERSION "unknown version"
+#endif
+
struct l_uniso_context {
lua_State *L;
int callback_ref;
@@ -77,6 +81,9 @@ static const luaL_reg methods[] = {
LUALIB_API int luaopen_uniso(lua_State *L)
{
luaL_openlib(L, MODULE_NAME, methods, 0);
+ lua_pushliteral(L, "version");
+ lua_pushliteral(L, VERSION);
+ lua_settable(L, -3);
return 1;
}