|
||||
File indexing completed on 2025-01-18 10:06:36
0001 // execinfo.h 0002 // 0003 // Dummy routines that implement execinfo, see 0004 // http://www.gnu.org/software/libc/manual/html_node/Backtraces.html 0005 // This file has to be in the include path to compile Pythia under Cygwin, 0006 // but otherwise has no function and can be removed. 0007 0008 int backtrace (void **buffer, int size) { return 0;} 0009 0010 char ** backtrace_symbols (void *const *buffer, int size) { return 0;} 0011 0012 void backtrace_symbols_fd (void *const *buffer, int size, int fd) {}
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |