libmissing.h 339 B

1234567891011121314151617
  1. #ifndef LIBMISSING_H
  2. #define LIBMISSING_H
  3. #include "config.h"
  4. #ifdef HAVE_EXECINFO_H
  5. #include <execinfo.h>
  6. #endif
  7. #ifndef HAVE_EXECINFO_H
  8. int backtrace(void **buffer, int size);
  9. char **backtrace_symbols(void *const *buffer, int size);
  10. void backtrace_symbols_fd(void *const *buffer, int size, int fd);
  11. #endif
  12. #endif /* LIBMISSING_H */