You are not logged in.
I can't find the source of the sqrt functions in the glibc source. Where can I find it?
thx
Fox
Offline
For what it's worth: url.
Offline
A grep of tar tvf glibc-2.3.3.tar.gz shows sqrt is in glibc-2.3.3/sysdeps/$ARCH - its arch dependant. For i386 the sqrt function is a couple of asm instructions. Perhaps you want to see the c source in the generic or ieee754 "arch" directories. Is that what you're looking for?
Offline
I'm looking for the whole c source of the sqrt Functions. The url you gave me just defines this funtctions.
Offline
Ok thanks 4 your help now I located it: http://sources.redhat.com/cgi-bin/cvswe … root=glibc
Offline