mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e33183acca
doesn't define it. USE_ELF is already provided by configure. patched by Naohisa Goto. [ruby-dev:44066] [Bug #4998] * addr2line.h: ditto. * vm_dump.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
21 lines
414 B
C
21 lines
414 B
C
/**********************************************************************
|
|
|
|
addr2line.h -
|
|
|
|
$Author$
|
|
|
|
Copyright (C) 2010 Shinichiro Hamaji
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef RUBY_ADDR2LINE_H
|
|
#define RUBY_ADDR2LINE_H
|
|
|
|
#ifdef USE_ELF
|
|
|
|
void
|
|
rb_dump_backtrace_with_lines(int num_traces, void **traces, char **syms);
|
|
|
|
#endif /* USE_ELF */
|
|
|
|
#endif /* RUBY_ADDR2LINE_H */
|