What GCC version had <stdint.h> defined?
"Martin v. Löwis"
martin at v.loewis.de
Thu Aug 26 17:27:05 EDT 2004
Scott David Daniels wrote:
> Does anyone know which version of GCC introduced stdint.h (and
> thereby uintptr_t and intptr_t)? I'd like to get the conditionals
> right.
stdint.h is not part of GCC; it is part of libc6. You shouldn't do
#ifdefs based on version numbers, but instead, you should do checks
based on the features of the software, like autoconf does.
Regards,
Martin
More information about the Python-list
mailing list