blob: f9f8e36451d7a206f1d59d7f4426f35b76747f2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _EXECINFO_H
#include <debug/execinfo.h>
extern int __backtrace (void **__array, int __size) __THROW;
extern char **__backtrace_symbols (void *__const *__array, int __size) __THROW;
extern void __backtrace_symbols_fd (void *__const *__array, int __size,
int __fd) __THROW;
#endif
|