diff options
Diffstat (limited to 'libcxxabi/src/temporary.cpp')
-rw-r--r-- | libcxxabi/src/temporary.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libcxxabi/src/temporary.cpp b/libcxxabi/src/temporary.cpp new file mode 100644 index 00000000000..03701e19c4c --- /dev/null +++ b/libcxxabi/src/temporary.cpp @@ -0,0 +1,21 @@ +//===---------------------------- temporary.cpp ---------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#pragma GCC visibility push(default) + +extern "C" +{ + +void (*__cxa_new_handler)() = 0; +void (*__cxa_terminate_handler)() = 0; +void (*__cxa_unexpected_handler)() = 0; + +} + +#pragma GCC visibility pop |