[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: freopen() and Lua 4
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 23 Apr 2002 14:47:07 -0300
>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