nxstyle: Add more inttypes.h stuff to the whitelist

This commit is contained in:
YAMAMOTO Takashi 2020-11-05 21:51:38 +09:00 committed by Alin Jerpelea
parent 54832f37f2
commit 954115e097
1 changed files with 10 additions and 1 deletions

View File

@ -183,7 +183,16 @@ static const struct file_section_s g_section_info[] =
static const char *g_white_prefix[] =
{
"Elf", /* Ref: include/elf.h, include/elf32.h, include/elf64.h */
"PRIx", /* Ref: intttypes.h */
"PRId", /* Ref: inttypes.h */
"PRIi", /* Ref: inttypes.h */
"PRIo", /* Ref: inttypes.h */
"PRIu", /* Ref: inttypes.h */
"PRIx", /* Ref: inttypes.h */
"SCNd", /* Ref: inttypes.h */
"SCNi", /* Ref: inttypes.h */
"SCNo", /* Ref: inttypes.h */
"SCNu", /* Ref: inttypes.h */
"SCNx", /* Ref: inttypes.h */
"SYS_", /* Ref: include/sys/syscall.h */
"STUB_", /* Ref: syscall/syscall_lookup.h, syscall/sycall_stublookup.c */
"b8", /* Ref: include/fixedmath.h */