]> 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)
committerAllan McRae <allan@archlinux.org>
Fri, 5 Sep 2014 12:44:06 +0000 (22:44 +1000)
This is needed to avoid a PLT call on s390.

(cherry picked from commit 35a5e3e338ae17f3d42c60a708763c5d498fb840)

ChangeLog
posix/spawn_faction_addopen.c

index 1c9518c1f6d2c7d9b803b9df2a5d7a9eafbe2193..658bec91d30107b6b47d78b945be23382abd8b2b 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  Florian Weimer  <fweimer@redhat.com>
 
        [BZ #17048]
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"