2023-11-12 06:32:12 +00:00
|
|
|
#ifndef _CXXABI_H
|
|
|
|
#define _CXXABI_H
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2024-01-15 19:50:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace __cxxabiv1 {
|
|
|
|
#endif /* __cplusplus */
|
2023-11-12 06:32:12 +00:00
|
|
|
|
|
|
|
char *__cxa_demangle(const char *, char *, size_t *, int *);
|
|
|
|
int __cxa_atexit(void (*)(void *), void *, void *) paramsnonnull((1)) dontthrow;
|
2024-01-22 18:23:28 +00:00
|
|
|
int __cxa_thread_atexit(void (*)(void *), void *, void *) dontthrow;
|
2023-11-12 06:32:12 +00:00
|
|
|
void __cxa_finalize(void *);
|
2024-01-15 19:50:38 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* namespace __cxxabiv1 */
|
|
|
|
#endif /* __cplusplus */
|
2023-11-12 06:32:12 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* _CXXABI_H */
|