summaryrefslogtreecommitdiff
path: root/include/c99/stdint.h
AgeCommit message (Collapse)AuthorFilesLines
2010-08-14Replace our custom C99 headers with http://code.google.com/p/msinttypes/José Fonseca1-106/+233
Perhaps http://www.azillionmonkeys.com/qed/pstdint.h would be a better (more portable) choice, but only MSVC uses this anyway, and we can always change later.
2010-08-13Add missing intmax_t and uintmax_tIan Romanick1-0/+3
2010-05-31Always define int32_t in compiler headers.Chia-I Wu1-2/+0
eglplatform.h no longer defines int32_t.
2010-01-10gallium: Provide alternative stdint.h and stdbool.h C99 headers, instead of ↵José Fonseca1-0/+119
ad-hoc definitions. Everybody is using the C99's integer types. Everybody except Microsoft, which in turns means everybody is including their own definitions of C99 integer types for MSVC, causing duplicate definitions when linking two projects. This is the case of building Gallium and LLVM with MSVC. Shipping alternative stdint.h and stdbool.h headers for MSVC allows us to share a single definition. It also removes clutter from the Gallium headers.