You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
244 B
7 lines
244 B
7 years ago
|
#ifndef FAKE_EXECINFO_H
|
||
|
#define FAKE_EXECINFO_H
|
||
|
int backtrace(void **array, int size) { return 0; }
|
||
|
char **backtrace_symbols(void *const *array, int size) { return 0; }
|
||
|
void backtrace_symbols_fd (void *const *array, int size, int fd) {}
|
||
|
#endif
|