mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-21 21:49:03 +00:00
7 lines
119 B
C
7 lines
119 B
C
|
#include "libc/math/libm.h"
|
||
|
|
||
|
float __math_divzerof(uint32_t sign)
|
||
|
{
|
||
|
return fp_barrierf(sign ? -1.0f : 1.0f) / 0.0f;
|
||
|
}
|