summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2007-05-27 20:17:06 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2007-05-27 20:17:06 +0000
commit3e76699962544b10c46cc79989129f3267142e85 (patch)
treef41f416a754d765a09b48bbf5358f25a71bb2e7d /sys
parent5a6d1f0333475915dbb1bc83f0227b26ebaaa1a8 (diff)
-static
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/udp_usrreq.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index 7c7be4de9ce..838027d9d03 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udp_usrreq.c,v 1.112 2006/12/09 01:12:28 itojun Exp $ */
+/* $OpenBSD: udp_usrreq.c,v 1.113 2007/05/27 20:17:05 dlg Exp $ */
/* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */
/*
@@ -118,8 +118,8 @@ int *udpctl_vars[UDPCTL_MAXID] = UDPCTL_VARS;
struct inpcbtable udbtable;
struct udpstat udpstat;
-static void udp_detach(struct inpcb *);
-static void udp_notify(struct inpcb *, int);
+void udp_detach(struct inpcb *);
+void udp_notify(struct inpcb *, int);
#ifndef UDBHASHSIZE
#define UDBHASHSIZE 128
@@ -652,7 +652,7 @@ bad:
* Notify a udp user of an asynchronous error;
* just wake up so that he can collect error status.
*/
-static void
+void
udp_notify(inp, errno)
struct inpcb *inp;
int errno;
@@ -1211,7 +1211,7 @@ release:
return (error);
}
-static void
+void
udp_detach(inp)
struct inpcb *inp;
{