X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/ad3c9f2af814c84582fdd1649e49ec4f68572c5a..2acb89982f71719aec26ca16705bd2c0400a9550:/stdlib/FreeBSD/atexit.h diff --git a/stdlib/FreeBSD/atexit.h b/stdlib/FreeBSD/atexit.h index 56220ef..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 +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);