• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)7 long 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)12 int mbtowc(wchar_t *pwc, const char *pmb, size_t max) {
13 #warning Not implemented
14   return 0;
15 }
16