diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/common/common-defs.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bfc427f..0ba4239 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-11-14 Joel Brobecker <brobecker@adacore.com> + + * common/common-defs.h: Move <stdarg.h> #include ahead of + <stdio.h> #include. + 2014-11-14 Pedro Alves <palves@redhat.com> * charset.c [PHONY_ICONV && !EILSEQ] (EILSEQ): Don't define. diff --git a/gdb/common/common-defs.h b/gdb/common/common-defs.h index 29c8ab3..4d2e8a7 100644 --- a/gdb/common/common-defs.h +++ b/gdb/common/common-defs.h @@ -27,9 +27,9 @@ #include "build-gnulib/config.h" #endif +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> -#include <stdarg.h> #include <stddef.h> #include <string.h> #include <errno.h> |