This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
Browse Source
Add missing intmax_t and uintmax_t
tags/mesa-7.9-rc1
Ian Romanick
15 years ago
parent
a77a6bc008
commit
d960b61ea3
1 changed files
with
3 additions
and
0 deletions
Split View
Show Diff Stats
3
0
include/c99/stdint.h
+ 3
- 0
include/c99/stdint.h
View File
@@ -110,6 +110,9 @@ typedef unsigned __int32 uintptr_t;
#define INT64_C(__val) __val##i64
#define UINT64_C(__val) __val##ui64
typedef int64_t intmax_t;
typedef uint64_t uintmax_t;
#else
#error "Unsupported compiler"
#endif
Write
Preview
Loading…
Cancel
Save