projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44af377
)
Revert to old version because it doesn't break preprocessor
author
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 1 Apr 2005 19:31:31 +0000
(19:31 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 1 Apr 2005 19:31:31 +0000
(19:31 +0000)
directives.
src/lib/stdint.h
patch
|
blob
|
history
diff --git
a/src/lib/stdint.h
b/src/lib/stdint.h
index 745ae77861d49a4cfdc7ffd6fd2138d8109de364..ef5f214e150a59102dc313c6702483b6e26d7a9f 100644
(file)
--- a/
src/lib/stdint.h
+++ b/
src/lib/stdint.h
@@
-43,9
+43,9
@@
typedef int64_t intmax_t;
typedef uint64_t uintmax_t;
#define UINTMAX_MAX UINT64_MAX
-#define PTRDIFF_MIN
((__PTRDIFF_TYPE__) INT32_MIN)
-#define PTRDIFF_MAX
((__PTRDIFF_TYPE__) INT32_MAX)
+#define PTRDIFF_MIN
INT32_MIN
+#define PTRDIFF_MAX
INT32_MAX
-#define SIZE_MAX
((__SIZE_TYPE__) UINT32_MAX)
+#define SIZE_MAX
UINT32_MAX
#endif /* lib/stdint.h */