util.poll: Remove 'inline' from function declaration

Why does this fix building?
This commit is contained in:
Kim Alvefur 2018-09-15 01:05:59 +02:00
parent fd174452eb
commit 1ad376770f

View file

@ -228,7 +228,7 @@ int Ldel(lua_State *L) {
/*
* Check previously manipulated event state for FDs ready for reading or writing
*/
inline int Lpushevent(lua_State *L, struct Lpoll_state *state) {
int Lpushevent(lua_State *L, struct Lpoll_state *state) {
#ifdef USE_EPOLL
if(state->processed > 0) {