SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners.

This commit is contained in:
Neal Norwitz 2007-02-27 19:06:23 +00:00
parent 6968b056ef
commit e0387ec8b5
2 changed files with 7 additions and 7 deletions

View File

@ -129,12 +129,12 @@ static struct gai_afd {
#define IN_LOOPBACKNET 127
#endif
static int get_name Py_PROTO((const char *, struct gai_afd *,
static int get_name(const char *, struct gai_afd *,
struct addrinfo **, char *, struct addrinfo *,
int));
static int get_addr Py_PROTO((const char *, int, struct addrinfo **,
struct addrinfo *, int));
static int str_isnumber Py_PROTO((const char *));
int);
static int get_addr(const char *, int, struct addrinfo **,
struct addrinfo *, int);
static int str_isnumber(const char *);
static char *ai_errlist[] = {
"success.",

View File

@ -82,8 +82,8 @@ struct gni_sockinet {
#define ENI_SALEN 6
/* forward declaration to make gcc happy */
int getnameinfo Py_PROTO((const struct sockaddr *, size_t, char *, size_t,
char *, size_t, int));
int getnameinfo(const struct sockaddr *, size_t, char *, size_t,
char *, size_t, int);
int
getnameinfo(sa, salen, host, hostlen, serv, servlen, flags)