1
0
mirror of https://github.com/brouhaha/dis6502.git synced 2024-06-02 10:41:30 +00:00

eliminate warnings.

This commit is contained in:
Eric Smith 2003-09-12 08:06:16 +00:00
parent 0f0013cdc1
commit e8ff798aea

3
lex.l
View File

@ -1,10 +1,13 @@
%{ %{
#undef ECHO #undef ECHO
#include <string.h>
#include "dis.h" #include "dis.h"
int lineno = 0; int lineno = 0;
char *strcpy(); char *strcpy();
%} %}
%option nounput
digit [0-9] digit [0-9]
hexdigit [0-9a-fA-F] hexdigit [0-9a-fA-F]
alpha [a-zA-Z] alpha [a-zA-Z]