diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2014-04-21 09:57:28 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2014-04-21 09:57:28 +0000 |
commit | 78a16c60d30195b5f4432b28ae7e282bef399cba (patch) | |
tree | 4cf199f64909e8f719367e900b787b1c37c2e345 /sys/netinet | |
parent | a33b3f1ff69ac1886dcc8d23b71b1aeea4e1af5f (diff) |
cosmetic changes regarding #ifdef to make things more obvious, ok reyk
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/in.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h index ac51100f3de..8db628cbd3c 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in.h,v 1.104 2014/04/20 09:38:19 henning Exp $ */ +/* $OpenBSD: in.h,v 1.105 2014/04/21 09:57:27 henning Exp $ */ /* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */ /* @@ -767,16 +767,16 @@ struct ip_mreq { #undef __KAME_NETINET_IN_H_INCLUDED_ #ifndef _KERNEL - #if __BSD_VISIBLE __BEGIN_DECLS int bindresvport(int, struct sockaddr_in *); struct sockaddr; int bindresvport_sa(int, struct sockaddr *); __END_DECLS -#endif +#endif /* __BSD_VISIBLE */ +#endif /* !_KERNEL */ -#else +#ifdef _KERNEL extern int inetctlerrmap[]; extern struct ifqueue ipintrq; /* ip packet input queue */ extern struct in_addr zeroin_addr; |