File: execinfo.h

package info (click to toggle)
glibc 2.43-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 319,788 kB
  • sloc: ansic: 1,066,750; asm: 238,025; makefile: 21,369; python: 13,638; sh: 11,921; cpp: 5,188; awk: 1,794; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (29)
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