diff options
Diffstat (limited to 'lib/libc/gen/getcwd.c')
-rw-r--r-- | lib/libc/gen/getcwd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libc/gen/getcwd.c b/lib/libc/gen/getcwd.c index 1ca0efc..6606af7 100644 --- a/lib/libc/gen/getcwd.c +++ b/lib/libc/gen/getcwd.c @@ -95,7 +95,6 @@ getcwd(pt, size) return (NULL); ept = pt + ptsize; } -#if !defined(__NETBSD_SYSCALLS) if (__getcwd(pt, ept - pt) == 0) { if (*pt != '/') { bpt = pt; @@ -108,7 +107,6 @@ getcwd(pt, size) } return (pt); } -#endif bpt = ept - 1; *bpt = '\0'; |