diff options
| author | 2007-05-27 20:17:05 +0000 | |
|---|---|---|
| committer | 2007-05-27 20:17:05 +0000 | |
| commit | 04ce8cb710f8a92a4d5a2219026e47ff30c4abce (patch) | |
| tree | 0d3595080bef1336c964ea3dd9f471a7a949d03f /sys/netinet/udp_usrreq.c | |
| parent | -static (diff) | |
| download | wireguard-openbsd-04ce8cb710f8a92a4d5a2219026e47ff30c4abce.tar.xz wireguard-openbsd-04ce8cb710f8a92a4d5a2219026e47ff30c4abce.zip | |
-static
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
| -rw-r--r-- | sys/netinet/udp_usrreq.c | 10 |
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; { |
