X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..2650fa9ee9806a25904566dea091b1225d74f063:/stdlib/FreeBSD/atexit.h?ds=sidebyside diff --git a/stdlib/FreeBSD/atexit.h b/stdlib/FreeBSD/atexit.h index 94929b5..608104f 100644 --- a/stdlib/FreeBSD/atexit.h +++ b/stdlib/FreeBSD/atexit.h @@ -33,4 +33,12 @@ /* must be at least 32 to guarantee ANSI conformance */ #define ATEXIT_SIZE 32 -void __cxa_finalize(void *dso); +struct __cxa_range_t { + const void* addr; + size_t length; +}; + +void __cxa_finalize(const void *dso); + +void __cxa_finalize_ranges(const struct __cxa_range_t ranges[], + unsigned int count);