>>>>> "Paul" == Paul Eggert <[EMAIL PROTECTED]> writes:
Paul> From: Akim Demaille <[EMAIL PROTECTED]> Date: 24 Feb 2000
Paul> 17:42:41 +0100
Akim> should we put stdint.h or inttypes.h into the default includes?
Paul> inttypes.h.
My question was badly asked, there was two actually:
- I was suggesting to include more headers in
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_UNISTD_H
# include <unistd.h>
#endif"
such as one of these two guys (more if people have suggestions)
- and if yes, which one of these two (which is the answer you gave).
So, do you think I should add inttypes.h?
Thanks a lot for the pointers and details!
Akim