diff options
author | 1996-07-29 22:01:50 +0000 | |
---|---|---|
committer | 1996-07-29 22:01:50 +0000 | |
commit | f5d252034ae3425e2e803966cb33f149a8e11e47 (patch) | |
tree | 40e8e55612dad5a52e504eb6d510184250c98837 /sys/netinet/tcp_usrreq.c | |
parent | Comment out all obscure networking support; XNS, in particular, is very (diff) | |
download | wireguard-openbsd-f5d252034ae3425e2e803966cb33f149a8e11e47.tar.xz wireguard-openbsd-f5d252034ae3425e2e803966cb33f149a8e11e47.zip |
Remove random() prototype, as it's not needed. Besides it was wrong for the alpha :-)
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index c9917e64290..a4e731ffc85 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.5 1996/07/29 06:22:15 tholo Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.6 1996/07/29 22:01:51 niklas Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -85,9 +85,6 @@ tcp_usrreq(so, req, m, nam, control) int req; struct mbuf *m, *nam, *control; { -#ifndef TCP_COMPAT_42 - u_int random __P((void)); -#endif /* !TCP_COMPAT_42 */ register struct inpcb *inp; register struct tcpcb *tp = NULL; int s; |