aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsclient/bootp_subr.c
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-02-09 06:11:36 +0000
commit303b270b0a55fd0dc287afb82267317ca7826a7b (patch)
tree82f7f30caed0917853b890f61d2857d27c2e02e3 /sys/nfsclient/bootp_subr.c
parent645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff)
downloadsrc-303b270b0a55fd0dc287afb82267317ca7826a7b.tar.gz
src-303b270b0a55fd0dc287afb82267317ca7826a7b.zip
Staticize.
Notes
Notes: svn path=/head/; revision=33181
Diffstat (limited to 'sys/nfsclient/bootp_subr.c')
-rw-r--r--sys/nfsclient/bootp_subr.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/sys/nfsclient/bootp_subr.c b/sys/nfsclient/bootp_subr.c
index 1712a80b1a08..891b93542804 100644
--- a/sys/nfsclient/bootp_subr.c
+++ b/sys/nfsclient/bootp_subr.c
@@ -1,4 +1,4 @@
-/* $Id: bootp_subr.c,v 1.7 1998/01/09 03:21:07 eivind Exp $ */
+/* $Id: bootp_subr.c,v 1.8 1998/01/18 18:46:20 tegge Exp $ */
/*
* Copyright (c) 1995 Gordon Ross, Adam Glass
@@ -129,14 +129,15 @@ void bootpboot_p_rtlist(void);
void bootpboot_p_iflist(void);
#endif
-int bootpc_call(struct bootp_packet *call,
- struct bootp_packet *reply,
- struct proc *procp);
+static int bootpc_call(struct bootp_packet *call,
+ struct bootp_packet *reply,
+ struct proc *procp);
-int bootpc_fakeup_interface(struct ifreq *ireq,struct socket *so,
+static int bootpc_fakeup_interface(struct ifreq *ireq,
+ struct socket *so,
struct proc *procp);
-int
+static int
bootpc_adjust_interface(struct ifreq *ireq,struct socket *so,
struct sockaddr_in *myaddr,
struct sockaddr_in *netmask,
@@ -252,7 +253,7 @@ void bootpboot_p_iflist(void)
}
#endif
-int
+static int
bootpc_call(call,reply,procp)
struct bootp_packet *call;
struct bootp_packet *reply; /* output */
@@ -421,7 +422,7 @@ bootpc_call(call,reply,procp)
return error;
}
-int
+static int
bootpc_fakeup_interface(struct ifreq *ireq,struct socket *so,
struct proc *procp)
{
@@ -511,7 +512,7 @@ bootpc_fakeup_interface(struct ifreq *ireq,struct socket *so,
return error;
}
-int
+static int
bootpc_adjust_interface(struct ifreq *ireq,struct socket *so,
struct sockaddr_in *myaddr,
struct sockaddr_in *netmask,