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]

Missing include in iconv/gconv_conf.c


A <bits/libc-lock.h> include is missing from iconv/gconv_conf.c.  If
you build with libio, it's getting the include from somewhere else,
but with stdio, it's not, which means that it won't build for the
Hurd.

OK to check this in?

Mark


2000-07-08  Mark Kettenis  <kettenis@gnu.org>

	* iconv/gconv_conf.c: Include <bits/libc-lock.h>.


Index: iconv/gconv_conf.c
===================================================================
RCS file: /cvs/glibc/libc/iconv/gconv_conf.c,v
retrieving revision 1.24
diff -u -p -r1.24 gconv_conf.c
--- iconv/gconv_conf.c	2000/06/20 00:16:36	1.24
+++ iconv/gconv_conf.c	2000/07/08 11:24:58
@@ -29,6 +29,8 @@
 #include <unistd.h>
 #include <sys/param.h>
 
+#include <bits/libc-lock.h>
+
 #include <gconv_int.h>
 
 

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