summaryrefslogtreecommitdiffstatshomepage
path: root/ports/unix/coveragecpp.cpp
blob: 93c1b387fe28577a07e14bf5951275b986980a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
extern "C" {
#include "py/obj.h"
}

#if defined(MICROPY_UNIX_COVERAGE)

// Just to test building of C++ code.
static mp_obj_t extra_cpp_coverage_impl() {
    return mp_const_none;
}

extern "C" {
mp_obj_t extra_cpp_coverage(void);
mp_obj_t extra_cpp_coverage(void) {
    return extra_cpp_coverage_impl();
}

// This is extern to avoid name mangling.
extern const mp_obj_fun_builtin_fixed_t extra_cpp_coverage_obj = {{&mp_type_fun_builtin_0}, {extra_cpp_coverage}};

}

#endif