From 0e5411b4ba15946bde04c7ee69b0c20129443b36 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Thu, 10 Mar 2011 20:34:23 +0100 Subject: [PATCH] libc: : fix typo in INTMAX_C()/UINTMAX_C() definition Change-Id: I3c74269901a288c448734dd7eb442a62b9348db8 --- libc/include/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/stdint.h b/libc/include/stdint.h index a889f15c5..3cd09d4eb 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h @@ -242,7 +242,7 @@ typedef int64_t intmax_t; # 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