root/src/system/libroot/posix/musl/math/__math_invalid.c
#include "libm.h"

double __math_invalid(double x)
{
        return (x - x) / (x - x);
}