Skip to content
Snippets Groups Projects
Commit 147bd7a1 authored by Avi Kivity's avatar Avi Kivity
Browse files

math: add extern "C" to __isnan

musl doesn't define __isnan, so we must mark as a C function.
parent 68bca163
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ double floor(double v)
return r;
}
extern "C"
int __isnan(double v)
{
u64 r;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment