123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _LIBCPP_CSTDARG
- #define _LIBCPP_CSTDARG
- #include <__config>
- #if __has_include(<stdarg.h>)
- # include <stdarg.h>
- # ifdef _LIBCPP_STDARG_H
- # error "If libc++ starts defining <stdarg.h>, the __has_include check should move to libc++'s <stdarg.h>"
- # endif
- #endif
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- using ::va_list _LIBCPP_USING_IF_EXISTS;
- _LIBCPP_END_NAMESPACE_STD
- #endif
|