Recently I have faced an interesting problem. When I use gdb for code search, I can move inside any function which I defined, by step-into. But when I try to do it for standard C function (e.g printf() ) I see only binary form of source code.
How can I ask gdb to show human-readable source code? I am very interested in the work of standard functions.Thank you!