mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
6 lines
132 B
C
6 lines
132 B
C
#include "libc/math/libm.h"
|
|
|
|
float __math_xflowf(uint32_t sign, float y)
|
|
{
|
|
return eval_as_float(fp_barrierf(sign ? -y : y) * y);
|
|
}
|