musl: Add format attribute to some function declarations
authorHauke Mehrtens <hauke@hauke-m.de>
Sun, 24 Jan 2016 00:05:14 +0000 (00:05 +0000)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 24 Jan 2016 00:05:14 +0000 (00:05 +0000)
commit2c05fb73fbb85f83833b369619025f378841c625
treeb6f9ce8cfc91e6cdd4bc7547cf16b28d63e0f8bc
parent8c834036b5c3a5f7667ae99b3da0dacdb9c82199
musl: Add format attribute to some function declarations

GCC and Clang are able to check the format arguments given to a
function and warn the user if there is a error in the format arguments
or if there is a potential uncontrolled format string security problem
in the code. GCC does this automatically for some functions like
printf(), but it is also possible to annotate other functions in a way
that it will check them too. This feature is used by glibc for many
functions. This patch adds the attribute to the some functions of musl
expect for these functions where gcc automatically adds it.

GCC automatically adds checks for these functions: printf, fprintf,
sprintf, scanf, fscanf, sscanf, strftime, vprintf, vfprintf and
vsprintf.

The documentation from gcc is here:
https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html

The documentation from Clang is here:
http://clang.llvm.org/docs/AttributeReference.html#format-gnu-format

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 48467
toolchain/musl/patches/040-Add-format-attribute-to-some-function-declarations.patch [new file with mode: 0644]