Added some __isoc23_XXX wrapped function as synonym to libc (for #943)

This commit is contained in:
ptitSeb 2023-09-09 14:41:23 +02:00
parent d1e8bcd7a5
commit afd5d3a1e3
3 changed files with 7 additions and 0 deletions

View File

@ -3853,6 +3853,8 @@ wrappedlibc:
- execve
- iFppV:
- __asprintf
- __isoc23_fscanf
- __isoc23_sscanf
- __isoc99_fscanf
- __isoc99_sscanf
- __isoc99_swscanf

View File

@ -195,6 +195,8 @@ typedef int32_t (*iFppipppp_t)(void*, void*, int32_t, void*, void*, void*, void*
GO(__vsscanf, iFppp_t) \
GO(execve, iFppp_t) \
GO(__asprintf, iFppV_t) \
GO(__isoc23_fscanf, iFppV_t) \
GO(__isoc23_sscanf, iFppV_t) \
GO(__isoc99_fscanf, iFppV_t) \
GO(__isoc99_sscanf, iFppV_t) \
GO(__isoc99_swscanf, iFppV_t) \

View File

@ -925,6 +925,9 @@ GO(__isnanf, iFf)
GOW(isnanf, iFf)
GO(__isnanl, iFD)
GOW(isnanl, iFD)
GO2(__isoc23_fscanf, iFEppV, my___isoc99_fscanf)
GO2(__isoc23_sscanf, iFEppV, my___isoc99_sscanf)
GO2(__isoc23_strtol, lFppi, strtol)
GOM(__isoc99_fscanf, iFEppV)
//GO(__isoc99_fwscanf, iFppV)
GOM(__isoc99_scanf, iFEpV)