mailing list of musl libc
 help / color / mirror / code / Atom feed
595c9dbc36232db1469359f36654e37dba2b534d blob 197 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
 
#if !defined(__mips_soft_float) && __mips >= 3

#include <math.h>

double sqrt(double x)
{
	double r;
	__asm__("sqrt.d %0,%1" : "=f"(r) : "f"(x));
	return r;
}

#else

#include "../sqrt.c"

#endif
debug log:

solving 595c9dbc ...
found 595c9dbc in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).