summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2007-07-06 15:42:04 +0000
committermillert <millert@openbsd.org>2007-07-06 15:42:04 +0000
commit1dc90dc5b1b743e3fce0b3b834b1661273e556b5 (patch)
tree9a3f873d01fcbcd3b34d704de3465e7afa5909a9 /lib/libc/stdlib
parentbtintrq has been removed from bt_input.c, don't reference it here. (diff)
downloadwireguard-openbsd-1dc90dc5b1b743e3fce0b3b834b1661273e556b5.tar.xz
wireguard-openbsd-1dc90dc5b1b743e3fce0b3b834b1661273e556b5.zip
Reference limits.h, not sys/param.h since we document using PATH_MAX
OK otto@
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/realpath.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/realpath.3 b/lib/libc/stdlib/realpath.3
index 5b4c197607d..c64fc3d637b 100644
--- a/lib/libc/stdlib/realpath.3
+++ b/lib/libc/stdlib/realpath.3
@@ -28,16 +28,16 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $OpenBSD: realpath.3,v 1.14 2007/05/31 19:19:31 jmc Exp $
+.\" $OpenBSD: realpath.3,v 1.15 2007/07/06 15:42:04 millert Exp $
.\"
-.Dd $Mdocdate: May 31 2007 $
+.Dd $Mdocdate: July 6 2007 $
.Dt REALPATH 3
.Os
.Sh NAME
.Nm realpath
.Nd returns the canonicalized absolute pathname
.Sh SYNOPSIS
-.Fd #include <sys/param.h>
+.Fd #include <limits.h>
.Fd #include <stdlib.h>
.Ft "char *"
.Fn realpath "const char *pathname" "char resolved[PATH_MAX]"