1#ifndef BORINGSSL_LIBCXX_ASSERTION_HANDLER_
2#define BORINGSSL_LIBCXX_ASSERTION_HANDLER_
3
4#include <__verbose_abort>
5
6// We use only bundle libc++ for testing, so we can use the verbose aborts.
7#define _LIBCPP_ASSERTION_HANDLER(message) _LIBCPP_VERBOSE_ABORT("%s", message)
8
9#endif  // BORINGSSL_LIBCXX_ASSERTION_HANDLER_
10