stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h

This commit is contained in:
Yang Tse 2011-07-26 17:23:27 +02:00
parent 983f3d70f9
commit f1586cb477
89 changed files with 50 additions and 369 deletions

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_LIMITS_H #ifdef HAVE_LIMITS_H
#include <limits.h> #include <limits.h>
#endif #endif
@ -39,16 +37,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#if defined(USE_THREADS_POSIX) #if defined(USE_THREADS_POSIX)

View File

@ -27,13 +27,11 @@
*/ */
#include "setup.h" #include "setup.h"
#ifdef USE_AXTLS #ifdef USE_AXTLS
#include <axTLS/ssl.h> #include <axTLS/ssl.h>
#include "axtls.h" #include "axtls.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -24,9 +24,6 @@
#include "setup.h" #include "setup.h"
#include <stdlib.h>
#include <string.h>
#define _MPRINTF_REPLACE /* use our functions only */ #define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h> #include <curl/mprintf.h>

View File

@ -49,9 +49,6 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if (defined(HAVE_IOCTL_FIONBIO) && defined(NETWARE)) #if (defined(HAVE_IOCTL_FIONBIO) && defined(NETWARE))
#include <sys/filio.h> #include <sys/filio.h>
@ -65,9 +62,6 @@
#include <inet.h> #include <inet.h>
#endif #endif
#include <stdio.h>
#include <string.h>
#define _MPRINTF_REPLACE /* use our functions only */ #define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h> #include <curl/mprintf.h>

View File

@ -24,9 +24,6 @@
#ifdef HAVE_LIBZ #ifdef HAVE_LIBZ
#include <stdlib.h>
#include <string.h>
#include "urldata.h" #include "urldata.h"
#include <curl/curl.h> #include <curl/curl.h>
#include "sendf.h" #include "sendf.h"

View File

@ -81,9 +81,6 @@ Example set of cookies:
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES) #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
#include <stdlib.h>
#include <string.h>
#define _MPRINTF_REPLACE #define _MPRINTF_REPLACE
#include <curl/mprintf.h> #include <curl/mprintf.h>

View File

@ -40,7 +40,6 @@
#ifdef __VMS #ifdef __VMS
# include <in.h> # include <in.h>
# include <inet.h> # include <inet.h>
# include <stdlib.h>
#endif #endif
#if defined(NETWARE) && defined(__NOVELL_LIBC__) #if defined(NETWARE) && defined(__NOVELL_LIBC__)

View File

@ -19,6 +19,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#if defined(USE_THREADS_POSIX) #if defined(USE_THREADS_POSIX)

View File

@ -27,16 +27,13 @@
*/ */
#include "setup.h" #include "setup.h"
#ifdef USE_CYASSL #ifdef USE_CYASSL
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"
#include "inet_pton.h" #include "inet_pton.h"

View File

@ -24,13 +24,6 @@
#ifndef CURL_DISABLE_DICT #ifndef CURL_DISABLE_DICT
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -22,13 +22,6 @@
#include "setup.h" #include "setup.h"
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -24,12 +24,9 @@
* allocated string or NULL if an error occurred. */ * allocated string or NULL if an error occurred. */
#include "setup.h" #include "setup.h"
#include <ctype.h>
#include <curl/curl.h> #include <curl/curl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "curl_memory.h" #include "curl_memory.h"
#include "urldata.h" #include "urldata.h"
#include "warnless.h" #include "warnless.h"

View File

@ -23,12 +23,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_FILE #ifndef CURL_DISABLE_FILE
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -22,7 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdlib.h>
#include "strdup.h" #include "strdup.h"
#include "fileinfo.h" #include "fileinfo.h"

View File

@ -21,6 +21,7 @@
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include <curl/curl.h> #include <curl/curl.h>
/* Length of the random boundary string. */ /* Length of the random boundary string. */
@ -28,10 +29,6 @@
#if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY) #if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME) #if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME)
#include <libgen.h> #include <libgen.h>
#endif #endif

View File

@ -23,11 +23,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_FTP #ifndef CURL_DISABLE_FTP
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>

View File

@ -22,10 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __VMS #ifdef __VMS
#include <unixlib.h> #include <unixlib.h>
#endif #endif

View File

@ -27,10 +27,6 @@
#include "urldata.h" #include "urldata.h"
#include "getinfo.h" #include "getinfo.h"
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include "curl_memory.h" #include "curl_memory.h"
#include "sslgen.h" #include "sslgen.h"
#include "connect.h" /* Curl_getconnectinfo() */ #include "connect.h" /* Curl_getconnectinfo() */

View File

@ -24,13 +24,6 @@
#ifndef CURL_DISABLE_GOPHER #ifndef CURL_DISABLE_GOPHER
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -29,14 +29,13 @@
*/ */
#include "setup.h" #include "setup.h"
#ifdef USE_GNUTLS #ifdef USE_GNUTLS
#include <gnutls/gnutls.h> #include <gnutls/gnutls.h>
#include <gnutls/x509.h> #include <gnutls/x509.h>
#include <gcrypt.h> #include <gcrypt.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdlib.h>
#include "hash.h" #include "hash.h"
#include "llist.h" #include "llist.h"

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_SETJMP_H #ifdef HAVE_SETJMP_H

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H

View File

@ -22,8 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -36,16 +34,12 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h> /* required for free() prototypes */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> /* for the close() proto */ #include <unistd.h> /* for the close() proto */
#endif #endif
#ifdef __VMS #ifdef __VMS
#include <in.h> #include <in.h>
#include <inet.h> #include <inet.h>
#include <stdlib.h>
#endif #endif
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H

View File

@ -23,12 +23,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_HTTP
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -19,15 +19,10 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_HTTP
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include "urldata.h" /* it includes http_chunks.h */ #include "urldata.h" /* it includes http_chunks.h */
#include "sendf.h" /* for the client write stuff */ #include "sendf.h" /* for the client write stuff */

View File

@ -19,15 +19,10 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH) #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH)
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"

View File

@ -19,6 +19,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#ifdef HAVE_GSSAPI #ifdef HAVE_GSSAPI
@ -27,12 +28,6 @@
#endif #endif
#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_HTTP
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"

View File

@ -19,17 +19,12 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#ifdef USE_WINDOWS_SSPI #ifdef USE_WINDOWS_SSPI
#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_HTTP
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"

View File

@ -19,6 +19,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
/* NTLM details: /* NTLM details:
@ -32,20 +33,12 @@
#define DEBUG_ME 0 #define DEBUG_ME 0
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif
#ifdef USE_NTLM_SSO #ifdef USE_NTLM_SSO
#include <unistd.h> #include <unistd.h>
#include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <signal.h> #include <signal.h>

View File

@ -27,6 +27,7 @@
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif
#include "urldata.h" #include "urldata.h"
#include <curl/curl.h> #include <curl/curl.h>
#include "http_proxy.h" #include "http_proxy.h"

View File

@ -19,13 +19,15 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
/***************************************************************************
* IDN Implementation using windows native APIs /*
* Pierre Joye <pierre@php.net> * IDN conversions using Windows kernel32 and normaliz libraries.
***************************************************************************/ */
#if defined(WIN32) && defined(USE_WIN32_IDN)
#include <windows.h> #include "setup.h"
#include <stdio.h>
#ifdef USE_WIN32_IDN
#include <tchar.h> #include <tchar.h>
#ifdef WANT_IDN_PROTOTYPES #ifdef WANT_IDN_PROTOTYPES
@ -121,7 +123,5 @@ int curl_win32_ascii_to_idn(const char *in, size_t in_len, char **out_utf8)
} }
return 1; return 1;
} }
#else
typedef int dummy; /* because ISO C forbids an empty translation unit! */ #endif /* USE_WIN32_IDN */
#endif
/* WIN32 */

View File

@ -26,11 +26,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_IMAP #ifndef CURL_DISABLE_IMAP
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>

View File

@ -34,7 +34,6 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#include <string.h>
#define _MPRINTF_REPLACE /* use our functions only */ #define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h> #include <curl/mprintf.h>

View File

@ -32,7 +32,6 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#include <string.h>
#include "inet_pton.h" #include "inet_pton.h"

View File

@ -44,11 +44,9 @@
#ifndef CURL_DISABLE_FTP #ifndef CURL_DISABLE_FTP
#ifdef HAVE_KRB4 #ifdef HAVE_KRB4
#include <stdlib.h>
#ifdef HAVE_NETDB_H #ifdef HAVE_NETDB_H
#include <netdb.h> #include <netdb.h>
#endif #endif
#include <string.h>
#include <krb.h> #include <krb.h>
#include <des.h> #include <des.h>

View File

@ -41,11 +41,9 @@
#define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
#endif #endif
#include <stdlib.h>
#ifdef HAVE_NETDB_H #ifdef HAVE_NETDB_H
#include <netdb.h> #include <netdb.h>
#endif #endif
#include <string.h>
#include "urldata.h" #include "urldata.h"
#include "curl_base64.h" #include "curl_base64.h"

View File

@ -35,13 +35,6 @@
* OpenLDAP library versions, USE_OPENLDAP shall not be defined. * OpenLDAP library versions, USE_OPENLDAP shall not be defined.
*/ */
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef CURL_LDAP_WIN /* Use Windows LDAP implementation. */ #ifdef CURL_LDAP_WIN /* Use Windows LDAP implementation. */
# include <winldap.h> # include <winldap.h>
# ifndef LDAP_VENDOR_NAME # ifndef LDAP_VENDOR_NAME

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdlib.h>
#include "llist.h" #include "llist.h"
#include "curl_memory.h" #include "curl_memory.h"

View File

@ -27,7 +27,6 @@
#ifdef USE_NSS #ifdef USE_NSS
#include "curl_md4.h" #include "curl_md4.h"
#include <string.h>
typedef unsigned int UINT4; typedef unsigned int UINT4;

View File

@ -24,8 +24,6 @@
#ifndef CURL_DISABLE_CRYPTO_AUTH #ifndef CURL_DISABLE_CRYPTO_AUTH
#include <string.h>
#include "curl_md5.h" #include "curl_md5.h"
#include "curl_hmac.h" #include "curl_hmac.h"

View File

@ -32,10 +32,6 @@
#define _MPRINTF_REPLACE #define _MPRINTF_REPLACE
#include <curl/mprintf.h> #include <curl/mprintf.h>
#include "urldata.h" #include "urldata.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>

View File

@ -1,6 +1,6 @@
#ifdef CURLDEBUG #ifdef CURLDEBUG
#ifndef _CURL_MEMDEBUG_H #ifndef HEADER_CURL_MEMDEBUG_H
#define _CURL_MEMDEBUG_H #define HEADER_CURL_MEMDEBUG_H
/*************************************************************************** /***************************************************************************
* _ _ ____ _ * _ _ ____ _
* Project ___| | | | _ \| | * Project ___| | | | _ \| |
@ -39,7 +39,6 @@
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
#include <stdio.h>
#define logfile curl_debuglogfile #define logfile curl_debuglogfile
@ -133,7 +132,7 @@ CURL_EXTERN int curl_fclose(FILE *file, int line, const char *source);
#endif /* MEMDEBUG_NODEFINES */ #endif /* MEMDEBUG_NODEFINES */
#endif /* _CURL_MEMDEBUG_H */ #endif /* HEADER_CURL_MEMDEBUG_H */
#endif /* CURLDEBUG */ #endif /* CURLDEBUG */
#ifndef fake_sclose #ifndef fake_sclose

View File

@ -36,11 +36,6 @@
*/ */
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
#if defined(DJGPP) && (DJGPP_MINOR < 4) #if defined(DJGPP) && (DJGPP_MINOR < 4)
#undef _MPRINTF_REPLACE /* don't use x_was_used() here */ #undef _MPRINTF_REPLACE /* don't use x_was_used() here */

View File

@ -22,10 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif

View File

@ -34,9 +34,6 @@
#ifdef HAVE_FCNTL_H #ifdef HAVE_FCNTL_H
#include <fcntl.h> #include <fcntl.h>
#endif #endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if (defined(HAVE_IOCTL_FIONBIO) && defined(NETWARE)) #if (defined(HAVE_IOCTL_FIONBIO) && defined(NETWARE))
#include <sys/filio.h> #include <sys/filio.h>

View File

@ -27,9 +27,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -20,14 +20,12 @@
* *
***************************************************************************/ ***************************************************************************/
#ifdef NETWARE /* Novell NetWare */ #include "setup.h"
#include <stdlib.h> #ifdef NETWARE /* Novell NetWare */
#ifdef __NOVELL_LIBC__ #ifdef __NOVELL_LIBC__
/* For native LibC-based NLM we need to register as a real lib. */ /* For native LibC-based NLM we need to register as a real lib. */
#include <errno.h>
#include <string.h>
#include <library.h> #include <library.h>
#include <netware.h> #include <netware.h>
#include <screen.h> #include <screen.h>

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -20,9 +20,9 @@
* *
***************************************************************************/ ***************************************************************************/
#ifdef NETWARE /* Novell NetWare */ #include "setup.h"
#include <stdlib.h> #ifdef NETWARE /* Novell NetWare */
#ifdef __NOVELL_LIBC__ #ifdef __NOVELL_LIBC__
/* For native LibC-based NLM we need to do nothing. */ /* For native LibC-based NLM we need to do nothing. */
@ -34,7 +34,6 @@ int netware_init ( void )
#else /* __NOVELL_LIBC__ */ #else /* __NOVELL_LIBC__ */
/* For native CLib-based NLM we need to initialize the LONG namespace. */ /* For native CLib-based NLM we need to initialize the LONG namespace. */
#include <stdio.h>
#include <nwnspace.h> #include <nwnspace.h>
#include <nwthread.h> #include <nwthread.h>
#include <nwadv.h> #include <nwadv.h>
@ -86,10 +85,4 @@ int __deinit_environment ( void )
#endif /* __NOVELL_LIBC__ */ #endif /* __NOVELL_LIBC__ */
#else /* NETWARE */
#ifdef __POCC__
# pragma warn(disable:2024) /* Disable warning #2024: Empty input file */
#endif
#endif /* NETWARE */ #endif /* NETWARE */

View File

@ -72,14 +72,8 @@
20040911 +0200 20040911 +0200
*/ */
#include "setup.h"
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#ifdef HAVE_STDLIB_H #include "setup.h"
#include <stdlib.h> /* for strtol() */
#endif
#include <curl/curl.h> #include <curl/curl.h>
#include "rawstr.h" #include "rawstr.h"

View File

@ -1,5 +1,5 @@
#ifndef __PINGPONG_H #ifndef HEADER_CURL_PINGPONG_H
#define __PINGPONG_H #define HEADER_CURL_PINGPONG_H
/*************************************************************************** /***************************************************************************
* _ _ ____ _ * _ _ ____ _
* Project ___| | | | _ \| | * Project ___| | | | _ \| |
@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -22,8 +22,6 @@
* *
***************************************************************************/ ***************************************************************************/
#include <stdarg.h>
#include "setup.h" #include "setup.h"
#if !defined(CURL_DISABLE_IMAP) || !defined(CURL_DISABLE_FTP) || \ #if !defined(CURL_DISABLE_IMAP) || !defined(CURL_DISABLE_FTP) || \
@ -144,4 +142,4 @@ CURLcode Curl_pp_disconnect(struct pingpong *pp);
int Curl_pp_getsock(struct pingpong *pp, curl_socket_t *socks, int Curl_pp_getsock(struct pingpong *pp, curl_socket_t *socks,
int numsocks); int numsocks);
#endif /* __PINGPONG_H */ #endif /* HEADER_CURL_PINGPONG_H */

View File

@ -27,11 +27,9 @@
*/ */
#include "setup.h" #include "setup.h"
#ifdef USE_POLARSSL #ifdef USE_POLARSSL
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -27,11 +27,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_POP3 #ifndef CURL_DISABLE_POP3
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>

View File

@ -23,8 +23,9 @@
#include "setup.h" #include "setup.h"
#ifdef USE_QSOSSL #ifdef USE_QSOSSL
#include <qsossl.h> #include <qsossl.h>
#include <string.h>
#ifdef HAVE_LIMITS_H #ifdef HAVE_LIMITS_H
# include <limits.h> # include <limits.h>
#endif #endif

View File

@ -46,9 +46,6 @@
#ifndef CURL_DISABLE_FTP #ifndef CURL_DISABLE_FTP
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI) #if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
#include <stdarg.h>
#include <string.h>
#ifdef HAVE_NETDB_H #ifdef HAVE_NETDB_H
#include <netdb.h> #include <netdb.h>
#endif #endif

View File

@ -22,10 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> /* required for send() & recv() prototypes */ #include <sys/socket.h> /* required for send() & recv() prototypes */
#endif #endif
@ -54,7 +50,6 @@
#define Curl_sec_read(a,b,c,d) -1 #define Curl_sec_read(a,b,c,d) -1
#endif #endif
#include <string.h>
#include "curl_memory.h" #include "curl_memory.h"
#include "strerror.h" #include "strerror.h"

View File

@ -21,9 +21,7 @@
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h> #include <curl/curl.h>
#include "urldata.h" #include "urldata.h"
#include "share.h" #include "share.h"

View File

@ -22,11 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include "curl_memory.h" #include "curl_memory.h"
#include "slist.h" #include "slist.h"

View File

@ -29,11 +29,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_SMTP #ifndef CURL_DISABLE_SMTP
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>

View File

@ -23,11 +23,7 @@
#include "setup.h" #include "setup.h"
#if !defined(CURL_DISABLE_PROXY) || defined(USE_WINDOWS_SSPI) #if !defined(CURL_DISABLE_PROXY) || defined(USE_WINDOWS_SSPI)
#include <string.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -31,11 +31,6 @@
#ifndef gss_nt_service_name #ifndef gss_nt_service_name
#define gss_nt_service_name GSS_C_NT_HOSTBASED_SERVICE #define gss_nt_service_name GSS_C_NT_HOSTBASED_SERVICE
#endif #endif
#include <string.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include "curl_gssapi.h" #include "curl_gssapi.h"
#include "urldata.h" #include "urldata.h"

View File

@ -20,17 +20,10 @@
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#ifdef USE_WINDOWS_SSPI #ifdef USE_WINDOWS_SSPI
#include <string.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"
#include "connect.h" #include "connect.h"

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <string.h>
#include <curl/curl.h> #include <curl/curl.h>
#include "urldata.h" #include "urldata.h"
#include "sendf.h" #include "sendf.h"

View File

@ -26,11 +26,6 @@
#ifdef USE_LIBSSH2 #ifdef USE_LIBSSH2
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef HAVE_LIMITS_H #ifdef HAVE_LIMITS_H
# include <limits.h> # include <limits.h>
#endif #endif

View File

@ -43,9 +43,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -32,9 +32,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_LIMITS_H #ifdef HAVE_LIMITS_H
#include <limits.h> #include <limits.h>
#endif #endif

View File

@ -21,6 +21,7 @@
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include "strdup.h" #include "strdup.h"
#ifndef HAVE_STRDUP #ifndef HAVE_STRDUP

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <ctype.h>
#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H
#include <strings.h> #include <strings.h>
#endif #endif

View File

@ -34,8 +34,6 @@
#endif #endif
#include <curl/curl.h> #include <curl/curl.h>
#include <stdlib.h>
#include <string.h>
#ifdef USE_LIBIDN #ifdef USE_LIBIDN
#include <idna.h> #include <idna.h>

View File

@ -24,7 +24,6 @@
#ifndef HAVE_STRTOK_R #ifndef HAVE_STRTOK_R
#include <stddef.h> #include <stddef.h>
#include <string.h>
#include "strtok.h" #include "strtok.h"

View File

@ -21,6 +21,7 @@
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include "strtoofft.h" #include "strtoofft.h"
/* /*
@ -32,14 +33,11 @@
*/ */
#ifdef NEED_CURL_STRTOLL #ifdef NEED_CURL_STRTOLL
#include <stdlib.h>
#include <ctype.h>
/* Range tests can be used for alphanum decoding if characters are consecutive, /* Range tests can be used for alphanum decoding if characters are consecutive,
like in ASCII. Else an array is scanned. Determine this condition now. */ like in ASCII. Else an array is scanned. Determine this condition now. */
#if('9' - '0') != 9 || ('Z' - 'A') != 25 || ('z' - 'a') != 25 #if('9' - '0') != 9 || ('Z' - 'A') != 25 || ('z' - 'a') != 25
#include <string.h>
#define NO_RANGE_TEST #define NO_RANGE_TEST

View File

@ -23,12 +23,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_TELNET #ifndef CURL_DISABLE_TELNET
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -23,11 +23,6 @@
#include "setup.h" #include "setup.h"
#ifndef CURL_DISABLE_TFTP #ifndef CURL_DISABLE_TFTP
/* -- WIN32 approved -- */
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>

View File

@ -22,13 +22,6 @@
#include "setup.h" #include "setup.h"
/* -- WIN32 approved -- */
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include "strtoofft.h" #include "strtoofft.h"
#include "strequal.h" #include "strequal.h"
#include "rawstr.h" #include "rawstr.h"

View File

@ -20,16 +20,8 @@
* *
***************************************************************************/ ***************************************************************************/
/* -- WIN32 approved -- */
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif

View File

@ -1,5 +1,5 @@
#ifndef __URL_H #ifndef HEADER_CURL_URL_H
#define __URL_H #define HEADER_CURL_URL_H
/*************************************************************************** /***************************************************************************
* _ _ ____ _ * _ _ ____ _
* Project ___| | | | _ \| | * Project ___| | | | _ \| |
@ -22,8 +22,6 @@
* *
***************************************************************************/ ***************************************************************************/
#include <stdarg.h> /* to make sure we have ap_list */
/* /*
* Prototypes for library-wide functions provided by url.c * Prototypes for library-wide functions provided by url.c
*/ */
@ -94,4 +92,4 @@ void Curl_verboseconnect(struct connectdata *conn);
#endif #endif
#endif #endif /* HEADER_CURL_URL_H */

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <string.h>
#include <stdio.h>
#include <curl/curl.h> #include <curl/curl.h>
#include "urldata.h" #include "urldata.h"
#include "sslgen.h" #include "sslgen.h"

View File

@ -21,6 +21,7 @@
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include "wildcard.h" #include "wildcard.h"
#include "llist.h" #include "llist.h"
#include "fileinfo.h" #include "fileinfo.h"

View File

@ -28,9 +28,6 @@
#ifndef HAVE_GETPASS_R #ifndef HAVE_GETPASS_R
/* this file is only for systems without getpass_r() */ /* this file is only for systems without getpass_r() */
#include <stdio.h>
#include <string.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif

View File

@ -22,10 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_PWD_H #ifdef HAVE_PWD_H
#include <pwd.h> #include <pwd.h>
#endif #endif

View File

@ -1,4 +1,5 @@
#include <stdio.h> #include "setup.h"
#include "hugehelp.h"
void hugehelp(void) void hugehelp(void)
{ {
puts ( "This is a silly replacement for the actual file."); puts ( "This is a silly replacement for the actual file.");

View File

@ -19,6 +19,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
***************************************************************************/ ***************************************************************************/
#include "setup.h" #include "setup.h"
#include <curl/curl.h> #include <curl/curl.h>
@ -27,13 +28,8 @@
** system headers ** system headers
*/ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <ctype.h>
#if defined(MSDOS) || defined(WIN32) #if defined(MSDOS) || defined(WIN32)
# if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME) # if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME)

View File

@ -136,12 +136,10 @@ print <<HEAD
#include "setup.h" #include "setup.h"
#ifdef USE_MANUAL #ifdef USE_MANUAL
#include "hugehelp.h" #include "hugehelp.h"
#include <stdio.h>
HEAD HEAD
; ;
if($c) { if($c) {
print <<HEAD print <<HEAD
#include <stdlib.h>
#include <zlib.h> #include <zlib.h>
static const unsigned char hugehelpgz[] = { static const unsigned char hugehelpgz[] = {
/* This mumbo-jumbo is the huge help text compressed with gzip. /* This mumbo-jumbo is the huge help text compressed with gzip.

View File

@ -23,10 +23,6 @@
/* client-local setup.h */ /* client-local setup.h */
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <curl/curl.h> #include <curl/curl.h>
#define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ #define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */

View File

@ -22,9 +22,6 @@
#include "setup.h" #include "setup.h"
#include <stdio.h>
#include <string.h>
#ifdef HAVE_SYS_TYPES_H #ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> #include <sys/types.h>
#endif #endif

View File

@ -27,7 +27,6 @@
#ifdef HAVE_FSETXATTR #ifdef HAVE_FSETXATTR
#include <sys/types.h> #include <sys/types.h>
#include <string.h>
#include <sys/xattr.h> /* include header from libc, not from libattr */ #include <sys/xattr.h> /* include header from libc, not from libattr */
/* mapping table of curl metadata to extended attribute names */ /* mapping table of curl metadata to extended attribute names */