am 3134b56b: am 0d6bbc7a: am dfe6eda5: Merge "libc: <stdint.h>: fix typo in INTMAX_C()/UINTMAX_C() definition"

* commit '3134b56bb077d9dce1a8d49ac805878baef33603':
  libc: <stdint.h>: fix typo in INTMAX_C()/UINTMAX_C() definition
This commit is contained in:
David 'Digit' Turner
2011-03-11 15:56:32 -08:00
committed by Android Git Automerger

View File

@@ -242,7 +242,7 @@ typedef int64_t intmax_t;
# define UINTMAX_MAX UINT64_MAX # define UINTMAX_MAX UINT64_MAX
#endif #endif
#ifndef __STDINT_MACROS #ifdef __STDINT_MACROS
# define INTMAX_C(c) INT64_C(c) # define INTMAX_C(c) INT64_C(c)
# define UINTMAX_C(c) UINT64_C(c) # define UINTMAX_C(c) UINT64_C(c)
#endif #endif