summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rfcomm/lexer.l2
-rw-r--r--rfcomm/parser.y1
2 files changed, 2 insertions, 1 deletions
diff --git a/rfcomm/lexer.l b/rfcomm/lexer.l
index 858e61d2..234f5215 100644
--- a/rfcomm/lexer.l
+++ b/rfcomm/lexer.l
@@ -36,6 +36,8 @@
#include "kword.h"
#include "parser.h"
+int yylex(void);
+
#define YY_NO_INPUT
#define ECHO {;}
diff --git a/rfcomm/parser.y b/rfcomm/parser.y
index 3afec076..c550e2f4 100644
--- a/rfcomm/parser.y
+++ b/rfcomm/parser.y
@@ -39,7 +39,6 @@
#include "kword.h"
-int yyparse(void);
int yylex(void);
int yyerror(char *s);