1 // Contains an implementation of all stdlib functions missing from bionic. 2 // 3 // TODO(ajwong): Make these work. 4 5 #include <stdlib.h> 6 strtold(const char * nptr,char ** endptr)7long double strtold(const char* nptr, char** endptr) { 8 #warning Not implemented 9 return 0; 10 } 11 mbtowc(wchar_t * pwc,const char * pmb,size_t max)12int mbtowc(wchar_t *pwc, const char *pmb, size_t max) { 13 #warning Not implemented 14 return 0; 15 } 16