lua-users home
lua-l archive

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


>Oh yes, another detail, regarding the math standard library.
>When defining USE_FLOAT, the math primitives remain the double-precision
>versions (sin, cos, etc.), instead of being the single precision ones (sinf,
>cosf, etc.)

We're sticking to C89, which does not have sinf and friends. C99 does have
them, but C99 compilers are not common yet.
--lhf