Garbage collect an extern for a non-existent variable.

While here let the comment end in a '.' and mark the #endif of _KERNEL.

Reviewed by:	rwatson (as part of a larger patch)
This commit is contained in:
Bjoern A. Zeeb 2009-06-12 20:50:28 +00:00
parent 53be8fca00
commit 736801ace4

View File

@ -39,18 +39,16 @@ POSSIBILITY OF SUCH DAMAGE.
struct flowtable;
extern struct flowtable *ip_ft;
extern struct flowtable *ip_forward_ft;
struct flowtable *flowtable_alloc(int nentry, int flags);
/*
* Given a flow table, look up the L3 and L2 information and
* return it in the route
* return it in the route.
*
*/
int flowtable_lookup(struct flowtable *ft, struct mbuf *m,
struct route *ro);
#endif
#endif /* _KERNEL */
#endif