summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/opendir.c4
-rw-r--r--lib/libc/shlib_version2
-rw-r--r--lib/libc/sys/Makefile.inc7
3 files changed, 7 insertions, 6 deletions
diff --git a/lib/libc/gen/opendir.c b/lib/libc/gen/opendir.c
index 481ae11c2e0..99cda4c1ad4 100644
--- a/lib/libc/gen/opendir.c
+++ b/lib/libc/gen/opendir.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: opendir.c,v 1.22 2011/07/18 00:27:15 matthew Exp $ */
+/* $OpenBSD: opendir.c,v 1.23 2011/07/18 17:29:49 matthew Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -58,7 +58,6 @@ opendir(const char *name)
return (dirp);
}
-#if 0
/*
* Open a directory specified by file descriptor.
*/
@@ -87,7 +86,6 @@ fdopendir(int fd)
}
return (dirp);
}
-#endif
static DIR *
__fdopendir(int fd, off_t offset)
diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version
index d7c8404b7c2..1909a767f6e 100644
--- a/lib/libc/shlib_version
+++ b/lib/libc/shlib_version
@@ -1,4 +1,4 @@
major=60
-minor=0
+minor=1
# note: If changes were made to include/thread_private.h or if system
# calls were added/changed then libpthread must also be updated.
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}