BUG: Don't include prototype in test for gethostbyname_r.
This commit is contained in:
parent
3a68f653ae
commit
ce3edc362f
|
@ -182,8 +182,11 @@ rc = gethostbyaddr_r(address, length, type, &h,
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
int
|
int
|
||||||
gethostbyname_r(const char *, struct hostent *, struct hostent_data *);
|
gethostbyname_r(const char *, struct hostent *, struct hostent_data *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
@ -202,8 +205,11 @@ gethostbyname_r(NULL, NULL, NULL);
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
int
|
int
|
||||||
gethostbyname_r(const char *, struct hostent *, struct hostent_data *);
|
gethostbyname_r(const char *, struct hostent *, struct hostent_data *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
@ -221,8 +227,11 @@ gethostbyname_r(NULL, NULL, NULL);
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
struct hostent *
|
struct hostent *
|
||||||
gethostbyname_r(const char *, struct hostent *, char *, int, int *);
|
gethostbyname_r(const char *, struct hostent *, char *, int, int *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
@ -239,8 +248,11 @@ gethostbyname_r(NULL, NULL, NULL, 0, NULL);
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
struct hostent *
|
struct hostent *
|
||||||
gethostbyname_r(const char *, struct hostent *, char *, int, int *);
|
gethostbyname_r(const char *, struct hostent *, char *, int, int *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
@ -256,9 +268,12 @@ gethostbyname_r(NULL, NULL, NULL, 0, NULL);
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
int
|
int
|
||||||
gethostbyname_r(const char *, struct hostent *, char *, size_t,
|
gethostbyname_r(const char *, struct hostent *, char *, size_t,
|
||||||
struct hostent **, int *);
|
struct hostent **, int *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
@ -275,9 +290,12 @@ gethostbyname_r(NULL, NULL, NULL, 0, NULL, NULL);
|
||||||
#undef NULL
|
#undef NULL
|
||||||
#define NULL (void *)0
|
#define NULL (void *)0
|
||||||
|
|
||||||
|
#if 0
|
||||||
int
|
int
|
||||||
gethostbyname_r(const char *, struct hostent *, char *, size_t,
|
gethostbyname_r(const char *, struct hostent *, char *, size_t,
|
||||||
struct hostent **, int *);
|
struct hostent **, int *);
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue