diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-14 18:10:13 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-14 19:28:34 +0100 |
| commit | 872cf03f26c2801ae6c3008ce5fa0d7856f5f85d (patch) | |
| tree | 94809812b71ee286eb5b74c70e4d08fc4c8dc057 /include/execinfo.h | |
| parent | ec769a83bde09c76bd6ad9ee7f391036dba5cd97 (diff) | |
libc: implement err/warn functions
Diffstat (limited to 'include/execinfo.h')
| -rw-r--r-- | include/execinfo.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/execinfo.h b/include/execinfo.h new file mode 100644 index 00000000..08ff6557 --- /dev/null +++ b/include/execinfo.h @@ -0,0 +1,14 @@ +#ifndef __EXECINFO_H +#define __EXECINFO_H + +#include <sys/cdefs.h> + +__BEGIN_DECLS + +int backtrace(void *, int); +char **backtrace_symbols(void *const, int size); +void backtrace_symbols_fd(void *const, int, int); + +__END_DECLS + +#endif |
