mirror of
https://github.com/ptitSeb/box64.git
synced 2025-05-08 07:59:18 +08:00
7 lines
82 B
C
7 lines
82 B
C
#include "libm.h"
|
|
|
|
double __math_invalid(double x)
|
|
{
|
|
return (x - x) / (x - x);
|
|
}
|