mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-08 10:18:13 +01:00
f42a8de0fa
Compiling the tests with -Wextra results to lots of warnings for unused parameters. Annotate these cases with the `unused' attribute to avoid the warnings.
17 lines
288 B
C
17 lines
288 B
C
#include <libunwind.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv __attribute__((unused)))
|
|
{
|
|
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;
|
|
}
|