Home | History | Annotate | Download | only in Python
      1 char *getcwd(char *buf, int size)
      2 {
      3   buf[0] = '\0';
      4   return buf;
      5 }
      6