NetBSD doesn't have a __getcwd syscall, so set have__getcwd to `no'

when building libc with NetBSD syscalls.
This commit is contained in:
John Birrell 1998-05-15 11:59:00 +00:00
parent 6e19590c40
commit efda37108b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36060

View File

@ -92,6 +92,9 @@ getcwd(pt, size)
return (NULL);
ept = pt + ptsize;
}
#if defined(__NETBSD_SYSCALLS)
have__getcwd = 0;
#else
if (have__getcwd) {
struct sigaction sa, osa;
int sigsys_installed = 0;
@ -127,6 +130,7 @@ getcwd(pt, size)
return (pt);
}
}
#endif
bpt = ept - 1;
*bpt = '\0';