| 19 | }; |
| 20 | |
| 21 | static void add_alias(lua_State *L, int index, const char *name, const char *target) |
| 22 | { |
| 23 | lua_getfield(L, index, target); |
| 24 | lua_setfield(L, index, name); |
| 25 | } |
| 26 | |
| 27 | static int compat_socket_unix_call(lua_State *L) |
| 28 | { |
no test coverage detected