mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
6 lines
119 B
C
6 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;
|
|
}
|