diff options
author | phk <phk@FreeBSD.org> | 1997-09-14 16:57:27 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-09-14 16:57:27 +0000 |
commit | bb6f420228a605137ef8cdfee0a709b394004873 (patch) | |
tree | ec74fbb8fdc96d74ae3b8aaadada11901746686d /lib/libc/sys | |
parent | b079abc11c97decabfeb4683ebd3561674cdf55d (diff) | |
download | FreeBSD-src-bb6f420228a605137ef8cdfee0a709b394004873.zip FreeBSD-src-bb6f420228a605137ef8cdfee0a709b394004873.tar.gz |
Add __getcwd() syscall, and have getcwd() take a shot at it.
If your kernel doesn't support __getcwd() or if __getcwd() cannot
deliver because of cache expiry, it does the canonical thing.
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 9928b8e..8e5ff31 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.3 (Berkeley) 10/24/94 -# $Id: Makefile.inc,v 1.38 1997/09/14 03:29:55 peter Exp $ +# $Id: Makefile.inc,v 1.39 1997/09/14 05:44:33 peter Exp $ # sys sources .PATH: ${.CURDIR}/../libc/${MACHINE}/sys ${.CURDIR}/../libc/sys @@ -23,7 +23,7 @@ ASM= access.o acct.o adjtime.o chdir.o chflags.o chmod.o \ getuid.o issetugid.o kill.o ktrace.o lchown.o \ lfs_bmapv.o lfs_markv.o \ lfs_segclean.o lfs_segwait.o link.o lstat.o \ - madvise.o mincore.o minherit.o mkdir.o mlock.o \ + madvise.o __getcwd.o mincore.o minherit.o mkdir.o mlock.o \ mount.o \ mprotect.o msgsys.o msync.o munlock.o munmap.o \ ntp_adjtime.o pathconf.o profil.o quotactl.o \ |