mirror of
https://git.suckless.org/9base
synced 2025-08-30 11:53:48 -07:00
11 lines
106 B
C
11 lines
106 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
#undef getwd
|
|
|
|
char*
|
|
p9getwd(char *s, int ns)
|
|
{
|
|
return getcwd(s, ns);
|
|
}
|