commit | dfe6eda57e1e463427f941d5d71f8ccb5297d6d2 | [log] [tgz] |
---|---|---|
author | David 'Digit' Turner <digit@android.com> | Thu Mar 10 11:35:58 2011 -0800 |
committer | Android Code Review <code-review@android.com> | Thu Mar 10 11:35:58 2011 -0800 |
tree | 99d2a9ab2b4b4a20b36fe8c03f74570feda7fa50 | |
parent | d6722bdd201e2747c55ec7255db7f1d5864ccdd3 [diff] | |
parent | 0e5411b4ba15946bde04c7ee69b0c20129443b36 [diff] |
Merge "libc: <stdint.h>: fix typo in INTMAX_C()/UINTMAX_C() definition"
diff --git a/libc/include/stdint.h b/libc/include/stdint.h index a889f15..3cd09d4 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h
@@ -242,7 +242,7 @@ # define UINTMAX_MAX UINT64_MAX #endif -#ifndef __STDINT_MACROS +#ifdef __STDINT_MACROS # define INTMAX_C(c) INT64_C(c) # define UINTMAX_C(c) UINT64_C(c) #endif