[svn] Remove implicit declaration warnings.

This commit is contained in:
hniksic 2001-11-29 10:22:18 -08:00
parent a3d3d452ab
commit fb98d1e4b0
5 changed files with 13 additions and 0 deletions

View File

@ -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>
* recur.c (descend_url_p): When resolving no_parent, compare with

View File

@ -29,6 +29,7 @@ int connect_to_many PARAMS ((struct address_list *, unsigned short, int));
void set_connection_host_name PARAMS ((const char *));
int test_socket_open PARAMS ((int));
int select_fd PARAMS ((int, int, int));
uerr_t bindport PARAMS ((unsigned short *));
uerr_t acceptport PARAMS ((int *));
void closeport PARAMS ((int));

View File

@ -24,6 +24,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <assert.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <openssl/bio.h>
#include <openssl/crypto.h>

View File

@ -34,6 +34,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/pem.h>
#include "gen_sslfunc.h" /* for ssl_iread */
#endif /* HAVE_SSL */
void

View File

@ -44,6 +44,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "connect.h"
#include "hash.h"
#ifdef HAVE_SSL
# include "gen_sslfunc.h" /* for ssl_iread */
#endif
#ifndef errno
extern int errno;
#endif