mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-14 23:35:24 +01:00
8 lines
186 B
Text
8 lines
186 B
Text
#if HAVE_FLOAT
|
|
if (t == VT_FLOAT)
|
|
vtop->c.f = -1.0 * 0.0;
|
|
else if (t == VT_DOUBLE)
|
|
vtop->c.d = -1.0 * 0.0;
|
|
else
|
|
vtop->c.ld = -1.0 * 0.0;
|
|
#endif
|