diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-07-30 05:37:22 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-07-30 05:37:22 +0000 |
commit | c3d50979a253e7fa697e1d13c2ca74f9787e5ad0 (patch) | |
tree | 04ade6fe4e76cd51a75a08ab602754c215718930 /bin | |
parent | c68cf602eb29ac50cd877729b9cf624acfcd3f84 (diff) |
include filter.h, dont' duplicate prototype
Diffstat (limited to 'bin')
-rw-r--r-- | bin/systrace/parse.y | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/bin/systrace/parse.y b/bin/systrace/parse.y index c1cdd499396..3cd0ec25b87 100644 --- a/bin/systrace/parse.y +++ b/bin/systrace/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.7 2002/07/30 05:33:39 itojun Exp $ */ +/* $OpenBSD: parse.y,v 1.8 2002/07/30 05:37:21 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -44,17 +44,10 @@ #include "intercept.h" #include "systrace.h" #include "systrace-errno.h" +#include "filter.h" void yyrestart(FILE *); -int filter_fnmatch(struct intercept_translate *, struct logic *); -int filter_stringmatch(struct intercept_translate *, struct logic *); -int filter_negstringmatch(struct intercept_translate *, struct logic *); -int filter_substrmatch(struct intercept_translate *, struct logic *); -int filter_negsubstrmatch(struct intercept_translate *, struct logic *); -int filter_inpath(struct intercept_translate *, struct logic *); -int filter_true(struct intercept_translate *, struct logic *); - struct logic *parse_newsymbol(char *, int, char *); int yylex(void); |