summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornordin <>2004-02-01 19:45:00 +0000
committernordin <>2004-02-01 19:45:00 +0000
commit16b2f3bc4142a41a6cc697a3cd5619dad21beb10 (patch)
tree29b011a2e8dcee278e0bc204e97d3faec5493eab /src
parentf408fdd277cc567bb5e589ffa5759ee0cdfea037 (diff)
downloadopenbsd-16b2f3bc4142a41a6cc697a3cd5619dad21beb10.tar.gz
openbsd-16b2f3bc4142a41a6cc697a3cd5619dad21beb10.tar.bz2
openbsd-16b2f3bc4142a41a6cc697a3cd5619dad21beb10.zip
Add const type qualifier. ok jmc@
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/net/getnetent.34
-rw-r--r--src/lib/libc/net/getprotoent.34
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/net/getnetent.3 b/src/lib/libc/net/getnetent.3
index 7cfb22a01d..40b50a8c3f 100644
--- a/src/lib/libc/net/getnetent.3
+++ b/src/lib/libc/net/getnetent.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: getnetent.3,v 1.12 2003/06/02 20:18:35 millert Exp $ 1.\" $OpenBSD: getnetent.3,v 1.13 2004/02/01 19:45:00 nordin Exp $
2.\" 2.\"
3.\" Copyright (c) 1983, 1991, 1993 3.\" Copyright (c) 1983, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -42,7 +42,7 @@
42.Ft struct netent * 42.Ft struct netent *
43.Fn getnetent "void" 43.Fn getnetent "void"
44.Ft struct netent * 44.Ft struct netent *
45.Fn getnetbyname "char *name" 45.Fn getnetbyname "const char *name"
46.Ft struct netent * 46.Ft struct netent *
47.Fn getnetbyaddr "in_addr_t net" "int type" 47.Fn getnetbyaddr "in_addr_t net" "int type"
48.Ft void 48.Ft void
diff --git a/src/lib/libc/net/getprotoent.3 b/src/lib/libc/net/getprotoent.3
index be257966a2..5c41e6fb7c 100644
--- a/src/lib/libc/net/getprotoent.3
+++ b/src/lib/libc/net/getprotoent.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: getprotoent.3,v 1.9 2003/06/02 20:18:35 millert Exp $ 1.\" $OpenBSD: getprotoent.3,v 1.10 2004/02/01 19:45:00 nordin Exp $
2.\" 2.\"
3.\" Copyright (c) 1983, 1991, 1993 3.\" Copyright (c) 1983, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -42,7 +42,7 @@
42.Ft struct protoent * 42.Ft struct protoent *
43.Fn getprotoent "void" 43.Fn getprotoent "void"
44.Ft struct protoent * 44.Ft struct protoent *
45.Fn getprotobyname "char *name" 45.Fn getprotobyname "const char *name"
46.Ft struct protoent * 46.Ft struct protoent *
47.Fn getprotobynumber "int proto" 47.Fn getprotobynumber "int proto"
48.Ft void 48.Ft void