File: execinfo.h

package info (click to toggle)
glibc 2.41-12
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 300,384 kB
  • sloc: ansic: 1,050,583; asm: 238,243; makefile: 20,379; python: 13,537; sh: 11,827; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _EXECINFO_H
#include <debug/execinfo.h>

# ifndef _ISOMAC

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 /* !_ISOMAC */
#endif