mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-02 20:04:43 +00:00
reorder includes to fix compiler warning about stpcpy
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@797 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
81fd416a69
commit
6ea6666b5e
4 changed files with 4 additions and 4 deletions
|
|
@ -6827,9 +6827,9 @@ char *yytext;
|
|||
Unrecognizable character data is passed on as a TEXT token.
|
||||
*/
|
||||
#line 6 "htmllex.l"
|
||||
#include "htmlsax.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "htmlsax.h"
|
||||
|
||||
#define YYSTYPE PyObject*
|
||||
#define YY_EXTRA_TYPE UserData*
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@
|
|||
*/
|
||||
|
||||
%{
|
||||
#include "htmlsax.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "htmlsax.h"
|
||||
|
||||
#define YYSTYPE PyObject*
|
||||
#define YY_EXTRA_TYPE UserData*
|
||||
|
|
|
|||
|
|
@ -87,9 +87,9 @@
|
|||
#line 2 "htmlparse.y"
|
||||
|
||||
/* SAX parser, optimized for WebCleaner */
|
||||
#include "htmlsax.h"
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "htmlsax.h"
|
||||
|
||||
/* bison type definitions */
|
||||
#define YYSTYPE PyObject*
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
/* the beginning */
|
||||
%{
|
||||
/* SAX parser, optimized for WebCleaner */
|
||||
#include "htmlsax.h"
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "htmlsax.h"
|
||||
|
||||
/* bison type definitions */
|
||||
#define YYSTYPE PyObject*
|
||||
|
|
|
|||
Loading…
Reference in a new issue