This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix execvp with linuxthreads


Hi!

execvp.c doesn't build with linuxthreads, fixed thusly:

2005-01-27  Jakub Jelinek  <jakub@redhat.com>

	* posix/execvp.c: Include stdbool.h.

--- libc/posix/execvp.c.jj	2005-01-26 14:45:23.000000000 +0100
+++ libc/posix/execvp.c	2005-01-27 17:30:17.242581623 +0100
@@ -18,6 +18,7 @@
 
 #include <unistd.h>
 #include <stdarg.h>
+#include <stdbool.h>
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]