test-libdw-dwarf-unwind.c 273 B

12345678910111213
  1. #include <elfutils/libdwfl.h>
  2. int main(void)
  3. {
  4. /*
  5. * This function is guarded via: __nonnull_attribute__ (1, 2).
  6. * Passing '1' as arguments value. This code is never executed,
  7. * only compiled.
  8. */
  9. dwfl_thread_getframes((void *) 1, (void *) 1, NULL);
  10. return 0;
  11. }