diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-02-26 02:57:23 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-02-26 02:57:23 +0100 |
commit | f8297941a03e1ed6d85519b6778732b59a7a32b9 (patch) | |
tree | 7cb47b0d90c236bf0912708f812bc13c038ddd69 /libiohelp | |
parent | 5d9219ddc17d3cbbce111fe29443b1a205503e06 (diff) | |
parent | e652274733eeba8a753623dc61bd781c35f93c93 (diff) |
Merge branch 'master' of git.savannah.gnu.org:/srv/git/hurd/hurd
Diffstat (limited to 'libiohelp')
-rw-r--r-- | libiohelp/iouser-dup.c | 2 | ||||
-rw-r--r-- | libiohelp/iouser-free.c | 2 | ||||
-rw-r--r-- | libiohelp/iouser-reauth.c | 1 | ||||
-rw-r--r-- | libiohelp/return-buffer.c | 1 | ||||
-rw-r--r-- | libiohelp/shared.c | 2 |
5 files changed, 8 insertions, 0 deletions
diff --git a/libiohelp/iouser-dup.c b/libiohelp/iouser-dup.c index 9158d0c4..ae55ad1d 100644 --- a/libiohelp/iouser-dup.c +++ b/libiohelp/iouser-dup.c @@ -17,6 +17,8 @@ #include "iohelp.h" +#include <stdlib.h> + error_t iohelp_dup_iouser (struct iouser **clone, struct iouser *iouser) { diff --git a/libiohelp/iouser-free.c b/libiohelp/iouser-free.c index 4cfdc954..19153da7 100644 --- a/libiohelp/iouser-free.c +++ b/libiohelp/iouser-free.c @@ -17,6 +17,8 @@ #include "iohelp.h" +#include <stdlib.h> + void iohelp_free_iouser (struct iouser *iouser) { diff --git a/libiohelp/iouser-reauth.c b/libiohelp/iouser-reauth.c index 4125cfb8..9edab7cf 100644 --- a/libiohelp/iouser-reauth.c +++ b/libiohelp/iouser-reauth.c @@ -18,6 +18,7 @@ #include "iohelp.h" #include <hurd/auth.h> #include <sys/mman.h> +#include <stdlib.h> /* Conduct a reauthentication transaction, returning a new iouser. AUTHSERVER is the I/O servers auth port. The rendezvous port diff --git a/libiohelp/return-buffer.c b/libiohelp/return-buffer.c index 3095dfb6..e186698f 100644 --- a/libiohelp/return-buffer.c +++ b/libiohelp/return-buffer.c @@ -23,6 +23,7 @@ #include <string.h> #include <mach.h> #include <sys/mman.h> +#include <stdlib.h> #include "iohelp.h" diff --git a/libiohelp/shared.c b/libiohelp/shared.c index 082b526b..b31a7170 100644 --- a/libiohelp/shared.c +++ b/libiohelp/shared.c @@ -18,6 +18,8 @@ #include "iohelp.h" +#include <stdlib.h> + /* These definitions exist to satisfy the linker. */ void __attribute__ ((weak)) |