summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenedikt Spranger <b.spranger@pengutronix.de>2004-10-04 17:22:20 +0000
committerBenedikt Spranger <b.spranger@pengutronix.de>2004-10-04 17:22:20 +0000
commitc2e0c7cdcd8a6219c8766df11831df6ffa7f9f7f (patch)
tree4cef30c41b7bf5bccc9279b8d8705c2be8af6806
parente9ec2f88b65fb8e4e37e896f53697a2aa8ad2ff5 (diff)
downloadmemedit-c2e0c7cdcd8a6219c8766df11831df6ffa7f9f7f.tar.gz
memedit-c2e0c7cdcd8a6219c8766df11831df6ffa7f9f7f.tar.xz
BSP: return added / cleanfiles updated
-rw-r--r--Makefile.am2
-rw-r--r--fpgaedit.y3
2 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 64acbd0..121f7bb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,7 +14,7 @@ y.tab.c y.tab.h: fpgaedit.y
lex.yy.c: fpgaedit.l
$(LEX) $<
-DISTCLEANFILES = *~ y.output y.tab.c y.tab.h lex.yy.c
+DISTCLEANFILES = *~ y.output y.tab.c y.tab.h lex.zz.c
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub \
configure depcomp install-sh ltmain.sh \
diff --git a/fpgaedit.y b/fpgaedit.y
index 083a89c..fe37cf3 100644
--- a/fpgaedit.y
+++ b/fpgaedit.y
@@ -273,6 +273,5 @@ void hex_output (int offset, int len, int count) {
int yylex (void) {
printf ("\nPROMPT>");
- zzlex ();
+ return zzlex ();
}
-