diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-27 16:42:58 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-27 16:43:16 +0100 |
commit | 3538a4b6c3f7831f57462bef6b6146638a11b97c (patch) | |
tree | 69168e8b396a52965eb162b775f686173d45c9c4 | |
parent | da8168df01e0b47eb369e5871be8c224690d1cfe (diff) | |
download | glibc-3538a4b6c3f7831f57462bef6b6146638a11b97c.zip glibc-3538a4b6c3f7831f57462bef6b6146638a11b97c.tar.gz glibc-3538a4b6c3f7831f57462bef6b6146638a11b97c.tar.bz2 |
hurd: fix warning
* resolv/res-close.c: Include <stdlib.h>.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | resolv/res-close.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,7 @@ * sysdeps/mach/hurd/xmknodat.c: Include <sys/sysmacros.h>. * sysdeps/mach/hurd/profil.c: Reuse `a' variable instead of introducing a `c' variable. + * resolv/res-close.c: Include <stdlib.h>. 2018-01-27 James Clarke <jrtc27@jrtc27.com> diff --git a/resolv/res-close.c b/resolv/res-close.c index 43b9292..e02f5af 100644 --- a/resolv/res-close.c +++ b/resolv/res-close.c @@ -86,6 +86,7 @@ #include <resolv_context.h> #include <resolv_conf.h> #include <not-cancel.h> +#include <stdlib.h> /* Close all open sockets. If FREE_ADDR is true, deallocate any separately allocated name server addresses. */ |