Forgot to remove two useless extern

This commit is contained in:
degroote 2007-02-18 14:13:52 +00:00
parent b0339b36b0
commit b7fbb86788
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ipsec6.h,v 1.7 2007/02/18 13:27:31 degroote Exp $ */
/* $NetBSD: ipsec6.h,v 1.8 2007/02/18 14:13:52 degroote Exp $ */
/* $FreeBSD: src/sys/netipsec/ipsec6.h,v 1.1.4.1 2003/01/24 05:11:35 sam Exp $ */
/* $KAME: ipsec.h,v 1.44 2001/03/23 08:08:47 itojun Exp $ */
@ -89,8 +89,8 @@ const char *ipsec6_logpacketstr (struct ip6_hdr *, u_int32_t);
#ifdef __NetBSD__
/* NetBSD protosw ctlin entrypoint */
extern void esp6_ctlinput(int, const struct sockaddr *, void *);
extern void ah6_ctlinput(int, const struct sockaddr *, void *);
void esp6_ctlinput(int, const struct sockaddr *, void *);
void ah6_ctlinput(int, const struct sockaddr *, void *);
#endif /* __NetBSD__ */
struct m_tag;