This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


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

Re: glibc 2.1.1pre2 breaks libstdc++-v3 build


"Zack Weinberg" <zackw@stanford.edu> writes:

> [Glibc should be doing
> 
> #define printf(args...) fprintf(stdout, args...)
> 
> which will DTRT with all versions of GCC that support varargs macros
> at all.]

Did you even try this (leave alone thinking about it)?  Try


typedef struct _IO_FILE FILE;
extern FILE *stdout;
#define printf(args...) fprintf(stdout, args)
int
main()
{
  printf ();
  return 0;
}


(Note the ... I left out to make it compile).

-- 
---------------.                          ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Red Hat          `--' drepper at redhat.com   `------------------------

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