Partially revert b2e140389f

" Move system includes before local ones"
This commit is contained in:
XhmikosR 2013-08-03 21:11:58 +03:00
parent 219f6546d3
commit 197046b761
3 changed files with 4 additions and 5 deletions

View File

@ -1,9 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "webarchive.h"
#include "miniz.c"
#include <stdio.h>
#include <stdlib.h>
#define ALL_ZIP "all.zip"
int main()

View File

@ -5,7 +5,6 @@
#include "webarchive.h"
int main()
{
const char *query_string = getenv("QUERY_STRING");

View File

@ -1,7 +1,7 @@
#include "validatexml.h"
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include "validatexml.h"
void skipspaces(const char xmldata[], int *pos, int *linenr)
{