summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/ChangeLog.eglibc9
-rw-r--r--libc/libio/fileops.c1
-rw-r--r--libc/libio/iosetbuffer.c2
-rw-r--r--libc/nptl/sysdeps/pthread/small-macros-fns.c2
-rw-r--r--libc/posix/fnmatch_loop.c2
-rw-r--r--libc/posix/regcomp.c2
-rw-r--r--libc/posix/regexec.c2
-rw-r--r--libc/stdio-common/tst-sprintf.c1
-rw-r--r--libc/stdio-common/tstdiomisc.c1
-rw-r--r--libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.c1
-rw-r--r--libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.h1
11 files changed, 24 insertions, 0 deletions
diff --git a/libc/ChangeLog.eglibc b/libc/ChangeLog.eglibc
index 2d82b6e4a..3329b1c81 100644
--- a/libc/ChangeLog.eglibc
+++ b/libc/ChangeLog.eglibc
@@ -1,3 +1,12 @@
+2009-11-09 Maxim Kuvyrkov <maxim@codesourcery.com>
+
+ * libio/fileops.c, libio/iosetbuffer.c,
+ * nptl/sysdeps/pthread/small-macros-fns.c, posix/fnmatch_loop.c,
+ * posix/regcomp.c, posix/regexec.c, stdio-common/tst-sprintf.c,
+ * stdio-common/tstdiomisc.c, sysdeps/ieee754/ldbl-opt/nldbl-compat.c,
+ * sysdeps/ieee754/ldbl-opt/nldbl-compat.h: Explicitly include
+ <gnu/option-groups.h>.
+
2009-10-18 Michael Schroeder <mls@suse.de>
* resolv/res_libc.c (__res_maybe_init): Re-initialize if
diff --git a/libc/libio/fileops.c b/libc/libio/fileops.c
index 94bbf839d..d2bcfd7d6 100644
--- a/libc/libio/fileops.c
+++ b/libc/libio/fileops.c
@@ -40,6 +40,7 @@
#include <string.h>
#include <errno.h>
#include <unistd.h>
+#include <gnu/option-groups.h>
#ifdef __STDC__
#include <stdlib.h>
#endif
diff --git a/libc/libio/iosetbuffer.c b/libc/libio/iosetbuffer.c
index 917f90554..5c1906ca8 100644
--- a/libc/libio/iosetbuffer.c
+++ b/libc/libio/iosetbuffer.c
@@ -26,6 +26,8 @@
This exception applies to code released by its copyright holders
in files containing the exception. */
+#include <gnu/option-groups.h>
+
#include "libioP.h"
void
diff --git a/libc/nptl/sysdeps/pthread/small-macros-fns.c b/libc/nptl/sysdeps/pthread/small-macros-fns.c
index 55cf75e0f..f751053ec 100644
--- a/libc/nptl/sysdeps/pthread/small-macros-fns.c
+++ b/libc/nptl/sysdeps/pthread/small-macros-fns.c
@@ -17,6 +17,8 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+#include <gnu/option-groups.h>
+
/* Handle macros from ./bits/libc-lock.h. */
#if defined _LIBC && (!defined NOT_IN_libc || defined IS_IN_libpthread)
diff --git a/libc/posix/fnmatch_loop.c b/libc/posix/fnmatch_loop.c
index cecc36c9d..5bec8cc19 100644
--- a/libc/posix/fnmatch_loop.c
+++ b/libc/posix/fnmatch_loop.c
@@ -17,6 +17,8 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
+#include <gnu/option-groups.h>
+
struct STRUCT
{
const CHAR *pattern;
diff --git a/libc/posix/regcomp.c b/libc/posix/regcomp.c
index e2e9ad01f..9afa69ab6 100644
--- a/libc/posix/regcomp.c
+++ b/libc/posix/regcomp.c
@@ -19,6 +19,8 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
+#include <gnu/option-groups.h>
+
static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
size_t length, reg_syntax_t syntax);
static void re_compile_fastmap_iter (regex_t *bufp,
diff --git a/libc/posix/regexec.c b/libc/posix/regexec.c
index 78b4d967e..ad38ecbeb 100644
--- a/libc/posix/regexec.c
+++ b/libc/posix/regexec.c
@@ -18,6 +18,8 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
+#include <gnu/option-groups.h>
+
static reg_errcode_t match_ctx_init (re_match_context_t *cache, int eflags,
int n) internal_function;
static void match_ctx_clean (re_match_context_t *mctx) internal_function;
diff --git a/libc/stdio-common/tst-sprintf.c b/libc/stdio-common/tst-sprintf.c
index e26b978d4..bfa79c9cc 100644
--- a/libc/stdio-common/tst-sprintf.c
+++ b/libc/stdio-common/tst-sprintf.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <gnu/option-groups.h>
int
diff --git a/libc/stdio-common/tstdiomisc.c b/libc/stdio-common/tstdiomisc.c
index 356d50a5f..d8bb09687 100644
--- a/libc/stdio-common/tstdiomisc.c
+++ b/libc/stdio-common/tstdiomisc.c
@@ -3,6 +3,7 @@
#include <stdio.h>
#include <string.h>
#include <wchar.h>
+#include <gnu/option-groups.h>
static int
t1 (void)
diff --git a/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.c b/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.c
index a615b2e0c..5d06d0eb3 100644
--- a/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.c
+++ b/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.c
@@ -27,6 +27,7 @@
#include <locale/localeinfo.h>
#include <sys/syslog.h>
#include <bits/libc-lock.h>
+#include <gnu/option-groups.h>
#include "nldbl-compat.h"
diff --git a/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.h b/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.h
index 98cc5339d..b94d6a46d 100644
--- a/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.h
+++ b/libc/sysdeps/ieee754/ldbl-opt/nldbl-compat.h
@@ -31,6 +31,7 @@
#include <math.h>
#include <monetary.h>
#include <sys/syslog.h>
+#include <gnu/option-groups.h>
/* Declare the __nldbl_NAME function the wrappers call that's in libc.so. */