Commit b6e18f2f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

#include "setup.h" moved first of all includes

parent 400ca043
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -55,12 +55,13 @@ Example set of cookies:
    13-Jun-1988 03:04:55 GMT; domain=.fidelity.com; path=/; secure
****/

#include "setup.h"

#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#include "cookie.h"
#include "setup.h"
#include "getdate.h"
#include "strequal.h"

+2 −2
Original line number Diff line number Diff line
@@ -38,6 +38,8 @@
 * ------------------------------------------------------------
 ****************************************************************************/

#include "setup.h"

/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
@@ -49,8 +51,6 @@

#include <errno.h>

#include "setup.h"

#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
#include <winsock.h>
#include <time.h>
+2 −2
Original line number Diff line number Diff line
@@ -38,12 +38,12 @@
 * ------------------------------------------------------------
 ****************************************************************************/

#include "setup.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "setup.h"

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
+2 −1
Original line number Diff line number Diff line
@@ -38,6 +38,8 @@
 * ------------------------------------------------------------
 ****************************************************************************/

#include "setup.h"

/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
@@ -49,7 +51,6 @@

#include <errno.h>

#include "setup.h"
#include "strequal.h"

#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
+2 −2
Original line number Diff line number Diff line
@@ -38,6 +38,8 @@
 * ------------------------------------------------------------
 ****************************************************************************/

#include "setup.h"

/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
@@ -49,8 +51,6 @@

#include <errno.h>

#include "setup.h"

#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
#include <winsock.h>
#include <time.h>
Loading