]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/math/__math_divzero.c
Update to musl 1.1.23.
[wasi-libc.git] / libc-top-half / musl / src / math / __math_divzero.c
1 #include "libm.h"
2
3 double __math_divzero(uint32_t sign)
4 {
5 return fp_barrier(sign ? -1.0 : 1.0) / 0.0;
6 }