You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
593 B

  1. --- pcmciautils-018/src/lex_config.l
  2. +++ pcmciautils-018/src/lex_config.l
  3. @@ -1,8 +1,8 @@
  4. /* Special state for handling include files */
  5. %x src
  6. -%option noinput nounput
  7. +%option noinput nounput noyywrap
  8. %{
  9. /*
  10. * Startup tool for non statically mapped PCMCIA sockets
  11. *
  12. @@ -75,14 +75,10 @@ module /* skip */ ;
  13. . return yytext[0];
  14. %%
  15. -#ifndef yywrap
  16. -int yywrap() { return 1; }
  17. -#endif
  18. -
  19. /*======================================================================
  20. Stuff to parse basic data types
  21. ======================================================================*/