mk-standalone

standalone mk from 9base
git clone git://git.evenfri.xyz/mk-standalone.git
Log | Files | Refs | README

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 }