[RFA] common-defs.h: include <stdarg.h> before <stdio.h>

Message ID 1415983688-26796-1-git-send-email-brobecker@adacore.com
State New, archived
Headers

Commit Message

Joel Brobecker Nov. 14, 2014, 4:48 p.m. UTC
  When trying to build gdbserver on ppc-lynx178, the compiler reports
while trying to compile gdbserver/ax.c that vsprintf is not declared.
Looking at my C99 reference manual (a draft), I see the following
synopsis:

    #include <stdarg.h>
    #include <stdio.h>
    int vsprintf(char * restrict s, [etc]);

Looking at stdio.h on LynxOS-178, if found where vsprintf gets
declared:

    #if defined(__varargs_h) || defined(__stdarg_h) \
            || defined(_VARARGS_H) || defined(_STDARG_H)
    extern int vsprintf             _AP((char *, const char *, va_list));
    #endif

Digging further, I noticed that common-defs.h, which is included
via server.h, includes stdarg.h after including stdio, explaining
why vsprintf does not get declared in this case.

This patch fixes the problem by including stdarg.h before stdio.h.

gdb/ChangeLog:

        * common/common-defs.h: Move <stdarg.h> #include ahead of
        <stdio.h> #include.

Tested on x86_64-linux. This was also implicitly tested on all
the platforms that we build GDB & GDBserver on, and no problem
has been detected since we made that change (Oct 6th).

OK to commit?

Thanks,
  

Comments

Pedro Alves Nov. 14, 2014, 4:54 p.m. UTC | #1
On 11/14/2014 04:48 PM, Joel Brobecker wrote:
> When trying to build gdbserver on ppc-lynx178, the compiler reports
> while trying to compile gdbserver/ax.c that vsprintf is not declared.
> Looking at my C99 reference manual (a draft), I see the following
> synopsis:
> 
>     #include <stdarg.h>
>     #include <stdio.h>
>     int vsprintf(char * restrict s, [etc]);

This says the same:

 http://pubs.opengroup.org/onlinepubs/009695399/functions/vfprintf.html

> OK to commit?

Definitely.

Thanks,
Pedro Alves
  
Joel Brobecker Nov. 14, 2014, 5:02 p.m. UTC | #2
> > When trying to build gdbserver on ppc-lynx178, the compiler reports
> > while trying to compile gdbserver/ax.c that vsprintf is not declared.
> > Looking at my C99 reference manual (a draft), I see the following
> > synopsis:
> > 
> >     #include <stdarg.h>
> >     #include <stdio.h>
> >     int vsprintf(char * restrict s, [etc]);
> 
> This says the same:
> 
>  http://pubs.opengroup.org/onlinepubs/009695399/functions/vfprintf.html
> 
> > OK to commit?
> 
> Definitely.

Thank you, Pedro. Now pushed.
  

Patch

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>