From 8a43ce98138d363b6595a16b98b6016c5e306191 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 28 Oct 2025 23:13:42 +0100 Subject: Use C90-compliant comments --- include/stdlib.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/stdlib.h') diff --git a/include/stdlib.h b/include/stdlib.h index 1c10906..0c4e40c 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -74,7 +74,7 @@ _FORTIFY_FN(wctomb) int wctomb(char * _FORTIFY_POS0 __s, wchar_t __w) __builtin_trap(); return __orig_wctomb(__s, __w); } -#endif // MB_CUR_MAX +#endif /* MB_CUR_MAX */ #endif #undef qsort @@ -153,7 +153,7 @@ __diagnose_as_builtin(__builtin_realpath, 1, 2) #endif _FORTIFY_FN(realpath) char *realpath(const char *__p, char *__r) { - // PATH_MAX is defined as 4096 + /* PATH_MAX is defined as 4096 */ if (__r && 4096 > __fh_bos(__r, 2)) { char __buf[4096], *__ret; __fh_size_t __l; @@ -171,12 +171,12 @@ _FORTIFY_FN(realpath) char *realpath(const char *__p, char *__r) } #endif -#endif // clang +#endif /* clang */ #ifdef __cplusplus } #endif -#endif // _FORTIFY_SOURCE +#endif /* _FORTIFY_SOURCE */ #endif -- cgit v1.3