diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-05 17:34:57 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-05 17:34:57 +0000 |
commit | d769da4cb4f01b8ffac0f52606bbf5075b19ba7c (patch) | |
tree | 3027cd442721cd5ae709584bc13c6353ef7eac5f /bin/systrace/lex.l | |
parent | d9135f788c4ed7a87cf6bc57099d5edd5eac872c (diff) |
proper handling for .y and .l such that dependancies get generated
Diffstat (limited to 'bin/systrace/lex.l')
-rw-r--r-- | bin/systrace/lex.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l index 4dd8b6a55ae..79d64b0cbc5 100644 --- a/bin/systrace/lex.l +++ b/bin/systrace/lex.l @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.l,v 1.5 2002/06/05 17:22:38 mickey Exp $ */ +/* $OpenBSD: lex.l,v 1.6 2002/06/05 17:34:56 mickey Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -45,7 +45,7 @@ #include "intercept.h" #include "systrace.h" -#include "parse.h" +#include "y.tab.h" int yyerror(char *fmt, ...); |