* ieee.c: Extensive changes to write code to put types in the
[deliverable/binutils-gdb.git] / binutils / arlex.l
index 47f8361bce1915bb6a02e6e8ff8acdcf698e987c..409aaa97a334ec99302b1eb98983b35d5d610082 100644 (file)
@@ -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
This page took 0.023016 seconds and 4 git commands to generate.