File: file-format.c

package info (click to toggle)
google-perftools 2.18-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 10,616 kB
  • sloc: cpp: 78,788; ansic: 17,902; sh: 10,783; python: 4,278; makefile: 1,127; ruby: 198; asm: 130; awk: 12
file content (9 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
// For now we only support elf (most unix-y and ~all post-unixy
// systems) and mach-o thingy that osex does.
#if __ELF__
#include "../libbacktrace/elf.c"
#elif defined(_AIX)
#include "../libbacktrace/xcoff.c"
#else
#include "../libbacktrace/macho.c"
#endif