johnsmith11
MIS
Hi,
Probably a silly question, but where do i find function implementations (for stdlib functions). To be precise I'm looking for the implementation of sqrt. I had a look in /usr/include and found math.h but it does not contain an implementation.
The cmath library contains the below;
sqrt( __x)
{ return __builtin_sqrt(__x); }
But does anybody know where do I find the code that satisfies __builtin_sqrt?
Thanks for your help in advance.
/--kjs
Probably a silly question, but where do i find function implementations (for stdlib functions). To be precise I'm looking for the implementation of sqrt. I had a look in /usr/include and found math.h but it does not contain an implementation.
The cmath library contains the below;
sqrt( __x)
{ return __builtin_sqrt(__x); }
But does anybody know where do I find the code that satisfies __builtin_sqrt?
Thanks for your help in advance.
/--kjs