lua-users home
lua-l archive

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


>I actually got it to "almost" compile on wince out of the box, the ANSI
>functions I found missing are:
>
>- freopen
>- system
>- remove
>- rename
>- tmpnam
>- getenv
>- clock
>- CLOCKS_PER_SEC
>- time
>- localtime
>- strftime

Except for freopen, all these are only used in libraries, so you can just remove
the functions that call them. For 4.1, we have replaced freopen by fclose+fopen.
--lhf