glibc/include/execinfo.h
Ulrich Drepper a784e50247 Remove pre-ISO C support
No more __const.
2012-01-07 23:57:22 -05:00

14 lines
346 B
C

#ifndef _EXECINFO_H
#include <debug/execinfo.h>
extern int __backtrace (void **__array, int __size);
libc_hidden_proto (__backtrace)
extern char **__backtrace_symbols (void *const *__array, int __size);
extern void __backtrace_symbols_fd (void *const *__array, int __size,
int __fd);
libc_hidden_proto (__backtrace_symbols_fd)
#endif