lua-users home
lua-l archive

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


>1.  BUFSIZ is not defined (it seems to be defined in <windows.h> for

BUFSIZ is no longer used in lua.c

>2.  size_t is not defined (WinCE's <stddef.h> doesn't define this)

Now, this is serious: the code is full of size_t.
Try typedef'ing this to unsigned long.

>3.  freopen() and rewind() do not exist on WinCE

freopen is no longer used in ldo.c.
rewind is not used at all in Lua 4.0 (or is it?)
--lhf