gas: remove use of PTR
[binutils-gdb.git] / gas / itbl-lex.l
index d9e243c8ab053a2279a47eed59f3a2b281a0c2bd..f4f47cc2b299ae64e97caeedb836f37b7cf43aee 100644 (file)
@@ -1,5 +1,7 @@
+%option noyywrap
+
 /* itbl-lex.l
-   Copyright (C) 1997-2017 Free Software Foundation, Inc.
+   Copyright (C) 1997-2022 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -19,7 +21,6 @@
    02110-1301, USA.  */
 
 %{
-#include "as.h"
 #include "itbl-lex.h"
 #include <itbl-parse.h>
 
@@ -102,11 +103,3 @@ HEX        [0-9A-Fa-f]
     return yytext[0];
   }
 %%
-
-#ifndef yywrap
-int
-yywrap ()
-  {
-    return 1;
-  }
-#endif