aboutsummaryrefslogtreecommitdiff
path: root/src/thread.h
blob: d25b4482b49c83a34591f4448e02114d854c48e5 (plain)
1
2
3
4
5
6
7
8
9
#include "lua.h"

int l_async(lua_State*);

static const luaL_Reg thread_function_list [] = {
  {"async",l_async},
  
  {NULL,NULL}
};