util.pposix: Expose ENOENT constant (usually 2, but you never know)

This commit is contained in:
Kim Alvefur 2017-03-01 17:03:48 +01:00
parent fc38b8c4f4
commit 82755e48e8

View file

@ -835,6 +835,11 @@ int luaopen_util_pposix(lua_State *L) {
lua_newtable(L);
luaL_setfuncs(L, exports, 0);
#ifdef ENOENT
lua_pushinteger(L, ENOENT);
lua_setfield(L, -2, "ENOENT");
#endif
lua_pushliteral(L, "pposix");
lua_setfield(L, -2, "_NAME");