12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef _LIBCPP_CSTDARG
- #define _LIBCPP_CSTDARG
- #include <__assert> // all public C++ headers provide the assertion handler
- #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
|