aboutsummaryrefslogtreecommitdiff
path: root/binutils/arlex.l
diff options
context:
space:
mode:
Diffstat (limited to 'binutils/arlex.l')
-rw-r--r--binutils/arlex.l7
1 files changed, 6 insertions, 1 deletions
diff --git a/binutils/arlex.l b/binutils/arlex.l
index 47f8361..409aaa9 100644
--- a/binutils/arlex.l
+++ b/binutils/arlex.l
@@ -66,7 +66,7 @@ int linenumber;
"(" { return '('; }
")" { return ')'; }
"," { return ','; }
-[A-Za-z0-9/$:.\-]+ {
+[A-Za-z0-9/$:.\-\_]+ {
yylval.name = strdup(yytext);
return FILENAME;
}
@@ -75,3 +75,8 @@ int linenumber;
" " { }
"\n" { linenumber ++; return NEWLINE; }
+%%
+#ifndef yywrap
+/* Needed for lex, though not flex. */
+int yywrap() { return 1; }
+#endif