hello,
I am building bionic libc with tag 10.0.0_r39
in file bionic/libc/bionic/strtold.cpp, I see following codes:
extern "C" int __strtorQ(const char*, char**, int, void*);
long double strtold(const char* s, char** end_ptr) {
#if defined(__LP64__)
long double result;
__strtorQ(s, end_ptr, FLT_ROUNDS, &result);
return result;
#else
// This is fine for LP32 where long double is just double.
return strtod(s, end_ptr);
#endif
}
I searched sourcecode, but could not find "__strtorQ()". Why the the build
can pass?
Thanks in adv.
--
--
You received this message because you are subscribed to the "Android Building"
mailing list.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en
---
You received this message because you are subscribed to the Google Groups
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/android-building/360f099d-5280-41eb-b15f-db02551dcc3cn%40googlegroups.com.