diff options
author | 2011-07-18 17:29:49 +0000 | |
---|---|---|
committer | 2011-07-18 17:29:49 +0000 | |
commit | f02fac78d1e489cfd904675bcfdf0e545041ca91 (patch) | |
tree | 8b74572b442b03eb43389140c6091d9f9d815fd8 /lib/libc/sys | |
parent | move aucat very early, to cope with pkgs; ok aja (diff) | |
download | wireguard-openbsd-f02fac78d1e489cfd904675bcfdf0e545041ca91.tar.xz wireguard-openbsd-f02fac78d1e489cfd904675bcfdf0e545041ca91.zip |
Expose a bunch of new functionality from POSIX 2008: openat(2),
fchmodat(2), fstatat(2), mkdirat(2), mkfifoat(2), mknodat(2),
faccessat(2), fchownat(2), linkat(2), readlinkat(2), renameat(2),
symlinkat(2), unlinkat(2), utimensat(2), futimens(2), and
fdopendir(3).
"Minor" libc bump.
Tested in a bulk build by naddy@
Much help from guenther@, thib@, tedu@, oga@, and others.
ok deraadt@, naddy@
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 6a6b2b6ef5f..9763500dac8 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.92 2010/07/03 04:44:51 guenther Exp $ +# $OpenBSD: Makefile.inc,v 1.93 2011/07/18 17:29:49 matthew Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -67,7 +67,10 @@ ASM= accept.o access.o acct.o adjfreq.o adjtime.o bind.o chdir.o chflags.o \ utimes.o wait4.o write.o writev.o nnpfspioctl.o __semctl.o \ __syscall.o __sysctl.o __getcwd.o sched_yield.o getthrid.o \ thrsleep.o thrwakeup.o threxit.o thrsigdivert.o \ - setrtable.o getrtable.o + setrtable.o getrtable.o \ + openat.o fchmodat.o fstatat.o mkdirat.o mkfifoat.o mknodat.o \ + faccessat.o fchownat.o linkat.o readlinkat.o renameat.o symlinkat.o \ + unlinkat.o utimensat.o futimens.o GASM= ${ASM:.o=.go} PASM= ${ASM:.o=.po} |