about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-01-27 18:49:47 +0000
committerUlrich Drepper <drepper@redhat.com>2005-01-27 18:49:47 +0000
commit717ecb1fe52cc726cb9521e8a93c90040fe2b255 (patch)
tree5050690c4689e689086ae63dccaa3b0b5ced40f5
parent02f3550c8bf47ecff6b548bc8ba3219d234a41a3 (diff)
downloadglibc-717ecb1fe52cc726cb9521e8a93c90040fe2b255.tar.gz
glibc-717ecb1fe52cc726cb9521e8a93c90040fe2b255.tar.xz
glibc-717ecb1fe52cc726cb9521e8a93c90040fe2b255.zip
Update.
2005-01-27  Jakub Jelinek  <jakub@redhat.com>

	* stdlib/tst-fmtmsg.c: Include stdlib.h.
	* stdio-common/tst-fmemopen2.c: Include string.h.
	* posix/execvp.c: Include stdbool.h.
-rw-r--r--ChangeLog6
-rw-r--r--posix/execvp.c1
-rw-r--r--stdio-common/tst-fmemopen2.c1
-rw-r--r--stdlib/tst-fmtmsg.c1
4 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f9a34f7f6b..059ed87f01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-27  Jakub Jelinek  <jakub@redhat.com>
+
+	* stdlib/tst-fmtmsg.c: Include stdlib.h.
+	* stdio-common/tst-fmemopen2.c: Include string.h.
+	* posix/execvp.c: Include stdbool.h.
+
 2004-12-13  Paolo Bonzini  <bonzini@gnu.org>
 
 	Separate parsing and creation of the NFA.  Avoided recursion on
diff --git a/posix/execvp.c b/posix/execvp.c
index d8dce7aeb7..9ccfd7fc22 100644
--- a/posix/execvp.c
+++ b/posix/execvp.c
@@ -18,6 +18,7 @@
 
 #include <unistd.h>
 #include <stdarg.h>
+#include <stdbool.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
diff --git a/stdio-common/tst-fmemopen2.c b/stdio-common/tst-fmemopen2.c
index 6a0ee836a2..bcb136e8c1 100644
--- a/stdio-common/tst-fmemopen2.c
+++ b/stdio-common/tst-fmemopen2.c
@@ -1,5 +1,6 @@
 #include <assert.h>
 #include <stdio.h>
+#include <string.h>
 #include <sys/types.h>
 
 
diff --git a/stdlib/tst-fmtmsg.c b/stdlib/tst-fmtmsg.c
index 055478963a..c3748d64d5 100644
--- a/stdlib/tst-fmtmsg.c
+++ b/stdlib/tst-fmtmsg.c
@@ -1,6 +1,7 @@
 #include <fmtmsg.h>
 #include <mcheck.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>