coreboot arm64: Add int constants to stdint.h

BUG=None
BRANCH=None
TEST=Compiles successfully

Change-Id: I395c9b7bbe34c6834abc1a169779639f940121bd
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/209334
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
Furquan Shaikh 2014-07-22 10:51:43 -07:00 committed by chrome-internal-fetch
commit da15df1646

View file

@ -52,9 +52,18 @@ typedef int16_t s16;
typedef int32_t s32;
typedef int64_t s64;
/* Types for `void *' pointers. */
typedef s64 intptr_t;
typedef u64 uintptr_t;
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#ifndef UINT64_MAX
# define UINT64_MAX (18446744073709551615ULL)
#endif
#ifndef PRIu64
#define PRIu64 "llu"
#endif
#endif /* ARM64_STDINT_H */