>>>>> "Paul" == Paul Eggert <[EMAIL PROTECTED]> writes:
Paul> Perhaps eventually, but I suspect that it's premature to do it
Paul> now.
Ooops, sorry, it already went in :(
Paul> Part of the problem is that STDC_HEADERS is currently specific
Paul> to ANSI C (1989); it hasn't been modernized to ISO C 1999.
Paul> Now's not the time to fix this, though it might not hurt to
Paul> mention this in the manual.
I did not change any STDC thing though. While finalizing 2.15 that
will be needed, we already make some literature about it :)
Just in case, do you see something else we should put in the default
includes:
ac_includes_default="\
#include <stdio.h>
#include <sys/types.h>
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#else
# if HAVE_STRINGS_H
# include <strings.h>
# endif
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif"
Akim