Home | History | Annotate | Download | only in android
      1 // Contains an implementation of nl_types functions missing from bionic.
      2 //
      3 // TODO(ajwong): Make these work.
      4 
      5 #include <nl_types.h>
      6 
      7 nl_catd catopen(const char* name, int oflag) {
      8 #warning Not implemented
      9   return 0;
     10 }
     11 
     12 char* catgets(nl_catd catd, int set_id, int msg_id, const char* s) {
     13 #warning Not implemented
     14   return 0;
     15 }
     16 
     17 int catclose(nl_catd catd) {
     18 #warning Not implemented
     19   return 0;
     20 }
     21