1char mod3_data[4096];
2
3void
4mod3_function (void (*f) (void))
5{
6 /* Make sure this is not a tail call and unwind information is
7 therefore needed. */
8 f ();
9 f ();
10}
11

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

source code of glibc/elf/tst-dl_find_object-mod3.c