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.

26 lines
522 B

  1. --- a/conf/pam_conv1/pam_conv_l.c
  2. +++ b/conf/pam_conv1/pam_conv_l.c
  3. @@ -534,7 +534,9 @@ void yyset_lineno (int line_number );
  4. #ifdef __cplusplus
  5. extern "C" int yywrap (void );
  6. #else
  7. -extern int yywrap (void );
  8. +int yywrap (void ) {
  9. + return 1;
  10. +}
  11. #endif
  12. #endif
  13. --- a/doc/specs/parse_l.c
  14. +++ b/doc/specs/parse_l.c
  15. @@ -520,7 +520,9 @@ void yyset_lineno (int line_number );
  16. #ifdef __cplusplus
  17. extern "C" int yywrap (void );
  18. #else
  19. -extern int yywrap (void );
  20. +int yywrap (void ) {
  21. + return 1;
  22. +}
  23. #endif
  24. #endif