Use malloc/free in the dbgapi callbacks
[deliverable/binutils-gdb.git] / gas / config / bfin-lex.l
index 9792323bbce3bb44040370df08e88a445e8e325a..6837f0d8c8ead0e80d106e08dd2456fa5671c19b 100644 (file)
@@ -1,6 +1,7 @@
+%option noyywrap
+
 /* bfin-lex.l  ADI Blackfin lexer
-   Copyright 2005, 2006, 2007, 2008, 2010
-   Free Software Foundation, Inc.
+   Copyright (C) 2005-2020 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -363,7 +364,7 @@ static long parse_int (char **end)
         fmt = 'd';
         break;
 
-      case '0':  /* Accept different formated integers hex octal and binary. */
+      case '0':  /* Accept different formatted integers hex octal and binary. */
         {
          char c = *++arg;
           arg++;
@@ -546,12 +547,3 @@ set_start_state (void)
 {
   BEGIN KEYWORD;
 }
-
-
-#ifndef yywrap
-int
-yywrap ()
-{
-  return 1;
-}
-#endif
This page took 0.082168 seconds and 4 git commands to generate.