[SDK] I guess sqrt is instrict on arm64

This commit is contained in:
Justin Miller 2023-09-27 14:22:47 -07:00
parent 9cad2bebeb
commit 82612c276f

View file

@ -8,6 +8,7 @@
#include <math.h>
#include <assert.h>
#ifndef _M_ARM64
double
__cdecl
sqrt(
@ -68,3 +69,4 @@ sqrt(
return y;
}
#endif