I don't understand weel the expected behviour of the PRINTF_ALIAS_STANDARD_FUNCTION_NAMES option.
What I expect is that option will overrride the 'printf' function (and other ones) from the libc to reroute call to the lib functions.
But, from the code, we can see that "
# define printf_ printf
"
that exactly do the reverse (the lib's printf_ call the libc printf).
It should be
# define printf printf_
Thanks