aboutsummaryrefslogtreecommitdiff
path: root/src/lua_typeerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua_typeerror.c')
-rw-r--r--src/lua_typeerror.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lua_typeerror.c b/src/lua_typeerror.c
new file mode 100644
index 0000000..d6a3d76
--- /dev/null
+++ b/src/lua_typeerror.c
@@ -0,0 +1,10 @@
1#include "lua_typeerror.h"
2#include "lua.h"
3#include "lauxlib.h"
4
5int luaL_typeerror (lua_State *L, int narg, const char *tname)
6{
7 const char *msg = lua_pushfstring(L, "%s expected, got %s",tname, luaL_typename(L, narg));
8 return luaL_argerror(L, narg, msg);
9}
10