![]() |
FLT | Function (Macro constructor) |
timath.h |
A deprecated macro used to define floating point numbers.
FLT is a now deprecated macro which is kept here only to retain compatibility
with programs which are written with older releases of TIGCC (before 0.9),
which didn't support standard floating point numbers. Now,
FLT(x,y)
will simply be translated to x.y
and
FLT(x)
will be translated to x.0
, e.g.
FLT(342,15)
will be translated to 342.15
,
FLT(0,0001)
will be translated to 0.0001
, and
FLT(4)
will be translated to 4.0
. Anyway, you don't
need to use the FLT
macro any more.