Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <libunwind-arm.h>
0003 #include <stdlib.h>
0004 
0005 extern int
0006 UNW_OBJ(dwarf_find_debug_frame) (int found, unw_dyn_info_t *di_debug,
0007                  unw_word_t ip, unw_word_t segbase,
0008                  const char *obj_name, unw_word_t start,
0009                  unw_word_t end);
0010 
0011 #define dwarf_find_debug_frame UNW_OBJ(dwarf_find_debug_frame)
0012 
0013 int main(void)
0014 {
0015     dwarf_find_debug_frame(0, NULL, 0, 0, NULL, 0, 0);
0016     return 0;
0017 }