summaryrefslogtreecommitdiff
path: root/libs/cpp/include/cxxabi.h
blob: be49babae9ad1d1e95f6d864c4d60bc70814c408 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <stddef.h>

namespace __cxxabiv1 {
    extern "C" {
    typedef void (*__cxa_cdtor_type)(void *);

    void __cxa_vec_cleanup(void *array, size_t count, size_t elementSize, __cxa_cdtor_type dtor);
    }
} // namespace __cxxabiv1