diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-02 11:59:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-02 11:59:42 +0000 |
commit | dd1f495c2f660881fcbafbc95b4c5dc02588f407 (patch) | |
tree | 7c0015722e8248c55c558bf3b9ee7fdd2325233a | |
parent | 12fa877f0069dec00f2064e672b454f72b4c6e10 (diff) |
we include errno.h to truly know if we have ECONNRESET or not
-rw-r--r-- | lib/setup.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/setup.h b/lib/setup.h index 3ba33dd32..66e7a8670 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -83,6 +83,7 @@ typedef unsigned char bool; #ifdef HAVE_ASSERT_H #include <assert.h> #endif +#include <errno.h> #ifndef OS #ifdef WIN32 |