1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

added include stdio.h for the FILE

This commit is contained in:
Daniel Stenberg 2000-12-14 08:34:47 +00:00
parent b0828267bc
commit 76ac228e44

View File

@ -26,9 +26,9 @@
* *
* ------------------------------------------------------------ * ------------------------------------------------------------
* Main author: * Main author:
* - Daniel Stenberg <Daniel.Stenberg@haxx.nu> * - Daniel Stenberg <daniel@haxx.se>
* *
* http://curl.haxx.nu * http://curl.haxx.se
* *
* $Source$ * $Source$
* $Revision$ * $Revision$
@ -40,6 +40,7 @@
* ------------------------------------------------------------ * ------------------------------------------------------------
****************************************************************************/ ****************************************************************************/
#include <stdio.h>
/* The include stuff here is mainly for time_t! */ /* The include stuff here is mainly for time_t! */
#ifdef vms #ifdef vms
# include <types.h> # include <types.h>
@ -470,8 +471,8 @@ char *curl_getenv(char *variable);
char *curl_version(void); char *curl_version(void);
/* This is the version number */ /* This is the version number */
#define LIBCURL_VERSION "7.5" #define LIBCURL_VERSION "7.5.1"
#define LIBCURL_VERSION_NUM 0x070500 #define LIBCURL_VERSION_NUM 0x070501
/* linked-list structure for the CURLOPT_QUOTE option (and other) */ /* linked-list structure for the CURLOPT_QUOTE option (and other) */
struct curl_slist { struct curl_slist {