Albert Chin <[EMAIL PROTECTED]> wrote: > Any reason all uses of #include <config.h> aren't wrapped with #ifdef > HAVE_CONFIG_H like so: > #ifdef HAVE_CONFIG_H > # include <config.h> > #endif > > Some .c files have the above and some don't. Seems to make sense for > all to have the form above.
The vast majority include config.h unconditionally since it is so often required. The few that remain may be there because the file is sync'd from glibc. In any other case, the #ifdef should be removed.
