diff options
-rw-r--r-- | sal/rtl/alloc_impl.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sal/rtl/alloc_impl.hxx b/sal/rtl/alloc_impl.hxx index 852db3767e2c..89b9b7c9fa67 100644 --- a/sal/rtl/alloc_impl.hxx +++ b/sal/rtl/alloc_impl.hxx @@ -51,17 +51,6 @@ #define RTL_MEMORY_P2END(value, align) \ (-(~(sal_IntPtr)(value) & -(sal_IntPtr)(align))) -/** printf() format specifier(s) - * (from C90 <sys/int_fmtio.h>) - */ -#ifndef PRIu64 -#if defined(_MSC_VER) -#define PRIu64 "I64u" -#else /* !_MSC_VER */ -#define PRIu64 "llu" -#endif /* !_MSC_VER */ -#endif /* PRIu64 */ - /** highbit(): log2() + 1 (complexity O(1)) */ |