URI: 
       getwd.c - 9base - revived minimalist port of Plan 9 userland to Unix
  HTML git clone git://git.suckless.org/9base
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       getwd.c (106B)
       ---
            1 #include <u.h>
            2 #include <libc.h>
            3 
            4 #undef getwd
            5 
            6 char*
            7 p9getwd(char *s, int ns)
            8 {
            9         return getcwd(s, ns);
           10 }