From 74f400838200f0b2968241155302cd1261e22b5f Mon Sep 17 00:00:00 2001 From: mintsuki Date: Wed, 17 Aug 2022 14:46:27 +0200 Subject: [PATCH] Change C++ style comment to C style --- stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdint.h b/stdint.h index 9369b28..4323b27 100644 --- a/stdint.h +++ b/stdint.h @@ -37,7 +37,7 @@ typedef __INTPTR_TYPE__ intptr_t; typedef __UINTMAX_TYPE__ uintmax_t; typedef __INTMAX_TYPE__ intmax_t; -// Clang and GCC have different mechanisms for INT32_C and friends. +/* Clang and GCC have different mechanisms for INT32_C and friends. */ #ifdef __clang__ # define __LIBC_C_EXPAND_JOIN(x, suffix) x ## suffix # define __LIBC_C_JOIN(x, suffix) __LIBC_C_EXPAND_JOIN(x, suffix)