summaryrefslogtreecommitdiffstats
path: root/include/c99
Commit message (Collapse)AuthorAgeFilesLines
* mesa: remove support for GCC older than 3.3.0Timothy Arceri2014-12-171-2/+1
| | | | | | | | | GCC >=3.3 has been required since 9aa3aa71386394725ce88df463d6183f62777ee5 Signed-off-by: Timothy Arceri <[email protected]> Reviewed-By: Jose Fonseca <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]>
* mesa: fixes for MSVC 2013Scott Graham2013-10-221-1/+2
| | | | | Cc: "9.2" <[email protected]> Reviewed-by: Brian Paul <[email protected]>
* Replace our custom C99 headers with http://code.google.com/p/msinttypes/José Fonseca2010-08-142-106/+538
| | | | | | 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.
* Add missing intmax_t and uintmax_tIan Romanick2010-08-131-0/+3
|
* Always define int32_t in compiler headers.Chia-I Wu2010-05-311-2/+0
| | | | eglplatform.h no longer defines int32_t.
* gallium: Provide alternative stdint.h and stdbool.h C99 headers, instead of ↵José Fonseca2010-01-102-0/+165
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.