diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-05 18:32:34 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-05 18:32:34 +0200 |
| commit | 0e750a7d0d5f3f0bab8d9253925e7241dbcd2e66 (patch) | |
| tree | 80e1faedd90c5de48a55baa9c5b7e7de039f1c0f /src | |
| parent | 5cd583f9444bb5784be19ef7a1e68cfd2d62e3da (diff) | |
| download | box64-0e750a7d0d5f3f0bab8d9253925e7241dbcd2e66.tar.gz box64-0e750a7d0d5f3f0bab8d9253925e7241dbcd2e66.zip | |
Added __isoc99_swscanf wrapped function to libc for real this time (for #424)
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped/generated/functions_list.txt | 1 | ||||
| -rw-r--r-- | src/wrapped/generated/wrappedlibctypes.h | 1 | ||||
| -rwxr-xr-x | src/wrapped/wrappedlibc_private.h | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/wrapped/generated/functions_list.txt b/src/wrapped/generated/functions_list.txt index bcb6f0af..7635db84 100644 --- a/src/wrapped/generated/functions_list.txt +++ b/src/wrapped/generated/functions_list.txt @@ -3768,6 +3768,7 @@ wrappedlibc: - __asprintf - __isoc99_fscanf - __isoc99_sscanf + - __isoc99_swscanf - asprintf - fprintf - fscanf diff --git a/src/wrapped/generated/wrappedlibctypes.h b/src/wrapped/generated/wrappedlibctypes.h index 4df5c085..49457ed7 100644 --- a/src/wrapped/generated/wrappedlibctypes.h +++ b/src/wrapped/generated/wrappedlibctypes.h @@ -194,6 +194,7 @@ typedef int32_t (*iFppipppp_t)(void*, void*, int32_t, void*, void*, void*, void* GO(__asprintf, iFppV_t) \ GO(__isoc99_fscanf, iFppV_t) \ GO(__isoc99_sscanf, iFppV_t) \ + GO(__isoc99_swscanf, iFppV_t) \ GO(asprintf, iFppV_t) \ GO(fprintf, iFppV_t) \ GO(fscanf, iFppV_t) \ diff --git a/src/wrapped/wrappedlibc_private.h b/src/wrapped/wrappedlibc_private.h index 7a33232d..84cd9b40 100755 --- a/src/wrapped/wrappedlibc_private.h +++ b/src/wrapped/wrappedlibc_private.h @@ -929,7 +929,7 @@ GOM(__isoc99_fscanf, iFEppV) //GO(__isoc99_fwscanf, iFppV) GOM(__isoc99_scanf, iFEpV) GOM(__isoc99_sscanf, iFEppV) -//GO(__isoc99_swscanf, iFppV) +GOM(__isoc99_swscanf, iFEppV) GOM(__isoc99_vfscanf, iFEppp) //GO(__isoc99_vfwscanf, iFppA) //GO(__isoc99_vscanf, iFpA) |