mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
11 lines
190 B
C++
11 lines
190 B
C++
/* clang-format off */
|
|
|
|
FPI *fpi, fpi1;
|
|
int Rounding;
|
|
Rounding = FLT_ROUNDS;
|
|
fpi = &fpi0;
|
|
if (Rounding != FPI_Round_near) {
|
|
fpi1 = fpi0;
|
|
fpi = &fpi1;
|
|
fpi1.rounding = Rounding;
|
|
}
|