aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/glibc/generic/execinfo.cpp
blob: 3474615e96fab0c117026d1f9080300500fde435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <execinfo.h>
#include <bits/ensure.h>

int backtrace(void **, int) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}

char **backtrace_symbols(void *const *, int) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}

void backtrace_symbols_fd(void *const *, int, int) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}