add forward declarations, and small cosmetic changes.
Submitted by: bde
This commit is contained in:
parent
0d18fdd0fc
commit
bb913f0f78
@ -36,7 +36,12 @@
|
||||
|
||||
extern int ip_gif_ttl;
|
||||
|
||||
void in_gif_input __P((struct mbuf *, int off, int proto));
|
||||
int in_gif_output __P((struct ifnet *, int, struct mbuf *, struct rtentry *));
|
||||
struct mbuf;
|
||||
struct ifnet;
|
||||
struct rtentry;
|
||||
|
||||
void in_gif_input __P((struct mbuf *, int off, int proto));
|
||||
int in_gif_output __P((struct ifnet *, int, struct mbuf *,
|
||||
struct rtentry *));
|
||||
|
||||
#endif /*_NETINET_IN_GIF_H_*/
|
||||
|
@ -34,7 +34,12 @@
|
||||
|
||||
#define GIF_HLIM 30
|
||||
|
||||
int in6_gif_input __P((struct mbuf **, int *, int));
|
||||
int in6_gif_output __P((struct ifnet *, int, struct mbuf *, struct rtentry *));
|
||||
struct mbuf;
|
||||
struct ifnet;
|
||||
struct rtentry;
|
||||
|
||||
int in6_gif_input __P((struct mbuf **, int *, int));
|
||||
int in6_gif_output __P((struct ifnet *, int, struct mbuf *,
|
||||
struct rtentry *));
|
||||
|
||||
#endif /*_NETINET6_IN6_GIF_H_*/
|
||||
|
@ -77,6 +77,7 @@
|
||||
struct mbuf;
|
||||
struct sockaddr;
|
||||
struct socket;
|
||||
struct sockopt;
|
||||
struct domain;
|
||||
struct proc;
|
||||
struct ip6_hdr;
|
||||
|
Loading…
Reference in New Issue
Block a user