diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2002-06-05 16:09:21 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2002-06-05 16:09:21 +0000 |
commit | 77d313c8754158ee248701c5ff4bfc45e4cd1a99 (patch) | |
tree | a2edf076a790ee7ed203d5ca2e6aba0c503837b2 /bin/systrace/lex.l | |
parent | f7a3988cc804a04caf1ca135c8eab792edb05667 (diff) |
inpath logic, for example, filename inpath "$CWD"
Diffstat (limited to 'bin/systrace/lex.l')
-rw-r--r-- | bin/systrace/lex.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l index b8828f615dc..4ac4e66abb4 100644 --- a/bin/systrace/lex.l +++ b/bin/systrace/lex.l @@ -77,6 +77,7 @@ eq { return EQ; } neq { return NEQ; } sub { return SUB; } nsub { return NSUB; } +inpath { return INPATH; } true { return TRUE; } "->" { return THEN; } \( { return LBRACE; } |