mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-10-31 23:29:26 +01:00
f176ad6fc6
Sadly, the conversion from Bitkeeper -> CVS -> git wasn't perfect. Or so it seems.
17 lines
264 B
C
17 lines
264 B
C
#include <libunwind.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int i, verbose = argc > 1;
|
|
const char *msg;
|
|
|
|
for (i = 0; i < 16; ++i)
|
|
{
|
|
msg = unw_strerror (-i);
|
|
if (verbose)
|
|
printf ("%6d -> %s\n", -i, msg);
|
|
}
|
|
return 0;
|
|
}
|