Our compilation will now look like this
gcc -g -o0 -o $output
Comparing this to the original output we can see that the function call is now using <puts@plt> instead of <printf@plt>
I believe that puts is able to reference the buffer much quicker than printf
Comments