diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 09:25:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 09:25:58 +0000 |
commit | 8edfb370a86dc97a09a689a1bddcfda76c608137 (patch) | |
tree | af289830e0ac8b668b65e4041b6d509baf469b3e /lib/sendf.c | |
parent | 4c08c8f7db0dc700c87654747fddaa60df87a96b (diff) | |
download | curl-8edfb370a86dc97a09a689a1bddcfda76c608137.tar.gz |
Added #include <errno.h>
Diffstat (limited to 'lib/sendf.c')
-rw-r--r-- | lib/sendf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index 9ea49e5c1..cf7e67d86 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 2002, Daniel Stenberg, <daniel@haxx.se>, et al. * * In order to be useful for every potential user, curl and libcurl are * dual-licensed under the MPL and the MIT/X-derivate licenses. @@ -26,6 +26,8 @@ #include <stdio.h> #include <stdarg.h> #include <stdlib.h> +#include <errno.h> + #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif |