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