diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-08-24 14:26:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-08-24 14:26:33 +0000 |
commit | b6e18f2f665f16910c04cb52bdc7b90270ab7c9b (patch) | |
tree | cfa866c10ac8af045fe2ca642909045e95c41aa4 /lib/easy.c | |
parent | 400ca043c73fb2e2db6d62b47183873b5a5966cd (diff) | |
download | curl-b6e18f2f665f16910c04cb52bdc7b90270ab7c9b.tar.gz |
#include "setup.h" moved first of all includes
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c index b49345cbe..f45132b9d 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -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__) |