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:
calvin 2003-03-04 19:23:21 +00:00
parent 81fd416a69
commit 6ea6666b5e
4 changed files with 4 additions and 4 deletions

View file

@ -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*

View file

@ -3,9 +3,9 @@
*/
%{
#include "htmlsax.h"
#include <string.h>
#include <stdlib.h>
#include "htmlsax.h"
#define YYSTYPE PyObject*
#define YY_EXTRA_TYPE UserData*

View file

@ -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*

View file

@ -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*