remove duplicated constants

This commit is contained in:
takase1121 2021-07-07 12:37:07 +08:00 committed by Adam Harrison
parent 192a93014d
commit c7bbf221ee
1 changed files with 0 additions and 6 deletions

View File

@ -389,11 +389,5 @@ int luaopen_process(lua_State *L)
lua_pushnumber(L, REPROC_STREAM_ERR);
lua_setfield(L, -2, "STREAM_STDERR");
lua_pushnumber(L, REPROC_INFINITE);
lua_setfield(L, -2, "WAIT_INFINITE");
lua_pushnumber(L, REPROC_DEADLINE);
lua_setfield(L, -2, "WAIT_DEADLINE");
return 1;
}