From 7aaea786c27723640b99d4bd3b28fbec9c85fc95 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 24 Aug 2023 15:48:14 +0300 Subject: [PATCH] LibC: Don't undef needed values in inttypes.h --- libc/include/inttypes.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/libc/include/inttypes.h b/libc/include/inttypes.h index ca901ea2..f424e8db 100644 --- a/libc/include/inttypes.h +++ b/libc/include/inttypes.h @@ -191,9 +191,6 @@ typedef struct #define SCNxMAX __PRI64_PREFIX "x" #define SCNxPTR __PRIPTR_PREFIX "x" -#undef __PRI64_PREFIX -#undef __PRIPTR_PREFIX - intmax_t imaxabs(intmax_t); imaxdiv_t imaxdiv(intmax_t, intmax_t); intmax_t strtoimax(const char* __restrict nptr, char** __restrict endptr, int base);