mirror of
https://sourceware.org/git/glibc.git
synced 2025-10-31 22:10:34 +03:00
Since clang 20 defines __INT64_C and __UINT64_C as built-in macros, undef them for glibc build and test. This fixes BZ #33311. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Reviewed-by: Collin Funk <collin.funk1@gmail.com>
7 lines
140 B
C
7 lines
140 B
C
#ifndef _STDINT_H
|
|
/* NB: Clang 20 defines them as built-in macros. */
|
|
#undef __INT64_C
|
|
#undef __UINT64_C
|
|
#include <stdlib/stdint.h>
|
|
#endif
|