This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
exclib/backtrace.h

8 lines
187 B
C

#ifndef __BACKTRACE_H__
#define __BACKTRACE_H__
extern int backtrace(void **buffer, int size);
extern char **backtrace_symbols(void *const *buffer, int size);
#endif // __BACKTRACE_H__