mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Remove implicit declaration warnings.
This commit is contained in:
parent
a3d3d452ab
commit
fb98d1e4b0
@ -1,3 +1,7 @@
|
|||||||
|
2001-11-29 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
|
* connect.h: Declare select_fd.
|
||||||
|
|
||||||
2001-11-29 Hrvoje Niksic <hniksic@arsdigita.com>
|
2001-11-29 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
* recur.c (descend_url_p): When resolving no_parent, compare with
|
* recur.c (descend_url_p): When resolving no_parent, compare with
|
||||||
|
@ -29,6 +29,7 @@ int connect_to_many PARAMS ((struct address_list *, unsigned short, int));
|
|||||||
void set_connection_host_name PARAMS ((const char *));
|
void set_connection_host_name PARAMS ((const char *));
|
||||||
|
|
||||||
int test_socket_open PARAMS ((int));
|
int test_socket_open PARAMS ((int));
|
||||||
|
int select_fd PARAMS ((int, int, int));
|
||||||
uerr_t bindport PARAMS ((unsigned short *));
|
uerr_t bindport PARAMS ((unsigned short *));
|
||||||
uerr_t acceptport PARAMS ((int *));
|
uerr_t acceptport PARAMS ((int *));
|
||||||
void closeport PARAMS ((int));
|
void closeport PARAMS ((int));
|
||||||
|
@ -24,6 +24,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
|
# include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <openssl/bio.h>
|
#include <openssl/bio.h>
|
||||||
#include <openssl/crypto.h>
|
#include <openssl/crypto.h>
|
||||||
|
@ -34,6 +34,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
#include <openssl/pem.h>
|
#include <openssl/pem.h>
|
||||||
|
#include "gen_sslfunc.h" /* for ssl_iread */
|
||||||
#endif /* HAVE_SSL */
|
#endif /* HAVE_SSL */
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -44,6 +44,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "hash.h"
|
#include "hash.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_SSL
|
||||||
|
# include "gen_sslfunc.h" /* for ssl_iread */
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef errno
|
#ifndef errno
|
||||||
extern int errno;
|
extern int errno;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user