summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortedu <>2005-03-28 06:21:48 +0000
committertedu <>2005-03-28 06:21:48 +0000
commitf8e147735c6d33300dba9867eab176037cd1bdce (patch)
treeeb657128d7157475fee2cf23bbf05783abe579c9 /src/lib
parentcf4abd3b977d7ae978b7b2807824711c5db40381 (diff)
downloadopenbsd-f8e147735c6d33300dba9867eab176037cd1bdce.tar.gz
openbsd-f8e147735c6d33300dba9867eab176037cd1bdce.tar.bz2
openbsd-f8e147735c6d33300dba9867eab176037cd1bdce.zip
add const
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libc/net/ethers.38
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/net/ethers.3 b/src/lib/libc/net/ethers.3
index 0509c121b8..72ea79bb2c 100644
--- a/src/lib/libc/net/ethers.3
+++ b/src/lib/libc/net/ethers.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: ethers.3,v 1.14 2001/08/06 10:42:26 mpech Exp $ 1.\" $OpenBSD: ethers.3,v 1.15 2005/03/28 06:21:48 tedu Exp $
2.\" 2.\"
3.\" Written by roland@frob.com. Public domain. 3.\" Written by roland@frob.com. Public domain.
4.\" 4.\"
@@ -18,13 +18,13 @@
18.Ft char * 18.Ft char *
19.Fn ether_ntoa "struct ether_addr *e" 19.Fn ether_ntoa "struct ether_addr *e"
20.Ft struct ether_addr * 20.Ft struct ether_addr *
21.Fn ether_aton "char *s" 21.Fn ether_aton "const char *s"
22.Ft int 22.Ft int
23.Fn ether_ntohost "char *hostname" "struct ether_addr *e" 23.Fn ether_ntohost "char *hostname" "struct ether_addr *e"
24.Ft int 24.Ft int
25.Fn ether_hostton "char *hostname" "struct ether_addr *e" 25.Fn ether_hostton "const char *hostname" "struct ether_addr *e"
26.Ft int 26.Ft int
27.Fn ether_line "char *l" "struct ether_addr *e" "char *hostname" 27.Fn ether_line "const char *l" "struct ether_addr *e" "char *hostname"
28.Sh DESCRIPTION 28.Sh DESCRIPTION
29Ethernet addresses are represented by the 29Ethernet addresses are represented by the
30following structure: 30following structure: