]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
posix_spawn_faction_addopen: Add missing string.h include directive
authorStefan Liebler <stli@linux.vnet.ibm.com>
Thu, 12 Jun 2014 12:15:25 +0000 (14:15 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 12 Jun 2014 12:20:07 +0000 (14:20 +0200)
This is needed to avoid a PLT call on s390.

ChangeLog
posix/spawn_faction_addopen.c

index 2d1b5c7fbe6f53fa6d418a3b1d94d0d99369069e..1b6848078dfbad6c5b2177fb3c2287d162af6a25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
+
+       * posix/spawn_faction_addopen.c: Include string.h.
+
 2014-06-11  Roland McGrath  <roland@hack.frob.com>
 
        * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
index 40800b8e6e81341501c0fb8a91009529e2048dec..eba158c2bb1f24260c6adc1174201ed7662bd0ed 100644 (file)
@@ -18,6 +18,7 @@
 #include <errno.h>
 #include <spawn.h>
 #include <unistd.h>
+#include <string.h>
 
 #include "spawn_int.h"