lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> The prototype of the next definitions are no more documented in lua_conf.h:
> 
> 	luai_writestring(s,l)
> 	luai_writeline()
> 	luai_writestringerror(s,p) 
> 
> But they must be defined.

They were moved to 'lauxlib.h', but you still can overwrite them
in luaconf.h.

(BTW, the correct names are 'luaconf.h', 'lua_writestring',
'lua_writeline', and 'lua_writestringerror'.)

-- Roberto