summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOscar Lim <olim@ucla.edu>2016-02-11 00:08:22 -0800
committerOscar Lim <olim@ucla.edu>2016-02-11 00:45:50 -0800
commit43d16e123da847a371f8fafb1b795ba9405127cf (patch)
tree821f7bc43778cc0a13d5424e6aaab8a8937b889a /src
parent7499b422e3f07bf25704cbf7989e845f89697fa8 (diff)
downloadluasystem-43d16e123da847a371f8fafb1b795ba9405127cf.zip
Release v0.1.0v0.1.0
Diffstat (limited to 'src')
-rw-r--r--src/core.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core.c b/src/core.c
index d2acb95..31e768b 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1,6 +1,8 @@
#include <lua.h>
#include <lauxlib.h>
+#define LUASYSTEM_VERSION "LuaSystem 0.1.0"
+
#ifdef _WIN32
#define LUAEXPORT __declspec(dllexport)
#else
@@ -14,6 +16,9 @@ void time_open(lua_State *L);
*-------------------------------------------------------------------------*/
LUAEXPORT int luaopen_system_core(lua_State *L) {
lua_newtable(L);
+ lua_pushstring(L, "_VERSION");
+ lua_pushstring(L, LUASYSTEM_VERSION);
+ lua_rawset(L, -3);
time_open(L);
return 1;
}