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 ldconfig.c with !NPTL


Hi!

stdbool.h is included via nptl/descr.h in NPTL builds, but is not included
when doing linuxthreads build.

2004-03-18  Jakub Jelinek  <jakub@redhat.com>

	* elf/ldconfig.c: Include stdbool.h.

--- libc/elf/ldconfig.c.jj	2004-03-18 13:18:29.000000000 +0100
+++ libc/elf/ldconfig.c	2004-03-18 17:05:25.249720038 +0100
@@ -25,6 +25,7 @@
 #include <errno.h>
 #include <inttypes.h>
 #include <libintl.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdio_ext.h>
 #include <stdlib.h>

	Jakub


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