mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
11 lines
123 B
C
11 lines
123 B
C
![]() |
#include <execinfo.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
backtrace(NULL, 0);
|
||
|
backtrace_symbols(NULL, 0);
|
||
|
|
||
|
return 0;
|
||
|
}
|