Changes for Watt-32 on Windows. I've assumed Configure
[platform/upstream/c-ares.git] / ares_free_hostent.c
1 /* Copyright 1998 by the Massachusetts Institute of Technology.
2  *
3  * Permission to use, copy, modify, and distribute this
4  * software and its documentation for any purpose and without
5  * fee is hereby granted, provided that the above copyright
6  * notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting
8  * documentation, and that the name of M.I.T. not be used in
9  * advertising or publicity pertaining to distribution of the
10  * software without specific, written prior permission.
11  * M.I.T. makes no representations about the suitability of
12  * this software for any purpose.  It is provided "as is"
13  * without express or implied warranty.
14  */
15
16 #include "setup.h"
17 #include <stdlib.h>
18
19 #if !defined(WIN32) || defined(WATT32)
20 #include <netdb.h>
21 #endif
22
23 #include "ares.h"
24 #include "ares_private.h" /* for memdebug */
25
26 void ares_free_hostent(struct hostent *host)
27 {
28   char **p;
29
30   free(host->h_name);
31   for (p = host->h_aliases; *p; p++)
32     free(*p);
33   free(host->h_aliases);
34   free(host->h_addr_list[0]);
35   free(host->h_addr_list);
36   free(host);
37 }