diff options
author | David Hill <dhill@cvs.openbsd.org> | 2008-12-18 15:31:38 +0000 |
---|---|---|
committer | David Hill <dhill@cvs.openbsd.org> | 2008-12-18 15:31:38 +0000 |
commit | 0240afed31ad5386e79d73cff612f0a0152fb173 (patch) | |
tree | d82753e472f5006820524f2e9e5a2128829a63aa | |
parent | cd97f2d013188e78333837912e193b09857df1fb (diff) |
Remove redundant function prototypes which are already in pfvar.h
ok henning@
-rw-r--r-- | sys/net/pf_ruleset.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/net/pf_ruleset.c b/sys/net/pf_ruleset.c index 0db7b1aea6d..decb83e036f 100644 --- a/sys/net/pf_ruleset.c +++ b/sys/net/pf_ruleset.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ruleset.c,v 1.1 2006/10/27 13:56:51 mcbride Exp $ */ +/* $OpenBSD: pf_ruleset.c,v 1.2 2008/12/18 15:31:37 dhill Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -85,14 +85,6 @@ struct pf_anchor_global pf_anchors; struct pf_anchor pf_main_anchor; -int pf_get_ruleset_number(u_int8_t); -void pf_init_ruleset(struct pf_ruleset *); -int pf_anchor_setup(struct pf_rule *, - const struct pf_ruleset *, const char *); -int pf_anchor_copyout(const struct pf_ruleset *, - const struct pf_rule *, struct pfioc_rule *); -void pf_anchor_remove(struct pf_rule *); - static __inline int pf_anchor_compare(struct pf_anchor *, struct pf_anchor *); RB_GENERATE(pf_anchor_global, pf_anchor, entry_global, pf_anchor_compare); |