mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08: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;
|
||
|
}
|