blob: 5647b78348835a0402ef52fc825d8d9d67f9a071 [file] [log] [blame]
#include <sys/types.h>
extern "C" void* __cxa_allocate_exception(size_t thrown_size) noexcept;
void* foo(size_t thrown_size) noexcept {
return __cxa_allocate_exception(thrown_size);
}