diff options
Diffstat (limited to 'src/thread.h')
| -rw-r--r-- | src/thread.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/thread.h b/src/thread.h new file mode 100644 index 0000000..d25b448 --- /dev/null +++ b/src/thread.h @@ -0,0 +1,9 @@ +#include "lua.h" + +int l_async(lua_State*); + +static const luaL_Reg thread_function_list [] = { + {"async",l_async}, + + {NULL,NULL} +}; |
