From aab3bd695e391d8e6ae8c921ee41b87f172c55f9 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 22 May 2023 13:41:47 -0400 Subject: [PATCH] don't do the #includes when cstd.h is used on c++ --- include/cstd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cstd.h b/include/cstd.h index 707f74157..10951d1d2 100644 --- a/include/cstd.h +++ b/include/cstd.h @@ -49,9 +49,11 @@ * (C11) UTF-16 and UTF-32 character utilities * */ +#if !defined(__cplusplus) #include #include #include +#endif /* !__cplusplus */ #endif /* CSTD_H */