execinfo.h 387 B

12345678910111213141516
  1. #ifndef _EXECINFO_H
  2. #include <debug/execinfo.h>
  3. # ifndef _ISOMAC
  4. extern int __backtrace (void **__array, int __size);
  5. libc_hidden_proto (__backtrace)
  6. extern char **__backtrace_symbols (void *const *__array, int __size);
  7. extern void __backtrace_symbols_fd (void *const *__array, int __size,
  8. int __fd);
  9. libc_hidden_proto (__backtrace_symbols_fd)
  10. # endif /* !_ISOMAC */
  11. #endif