diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-04-30 12:29:18 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-04-30 12:29:18 +0200 |
| commit | 349736b0a54a7488f1a4cc7e5a7372e46c9d9da3 (patch) | |
| tree | 494ac10a1f1c7940dbfc602dffb38df8fd79bdfb /src/wrapped/generated/wrappedlibctypes.h | |
| parent | 80be548b641f3f78d5de869ddc9c88a5a7217dc3 (diff) | |
| download | box64-349736b0a54a7488f1a4cc7e5a7372e46c9d9da3.tar.gz box64-349736b0a54a7488f1a4cc7e5a7372e46c9d9da3.zip | |
Added a few wrapped functions to libc
Diffstat (limited to 'src/wrapped/generated/wrappedlibctypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibctypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrappedlibctypes.h b/src/wrapped/generated/wrappedlibctypes.h index f0a1e0c3..8aabf49e 100644 --- a/src/wrapped/generated/wrappedlibctypes.h +++ b/src/wrapped/generated/wrappedlibctypes.h @@ -24,6 +24,7 @@ typedef void (*vFpi_t)(void*, int64_t); typedef void (*vFpu_t)(void*, uint64_t); typedef void (*vFpp_t)(void*, void*); typedef void (*vFpV_t)(void*, ...); +typedef int64_t (*iFip_t)(int64_t, void*); typedef int64_t (*iFpi_t)(void*, int64_t); typedef int64_t (*iFpL_t)(void*, uintptr_t); typedef int64_t (*iFpp_t)(void*, void*); @@ -56,6 +57,7 @@ typedef void (*vFpLLp_t)(void*, uintptr_t, uintptr_t, void*); typedef int64_t (*iFiiip_t)(int64_t, int64_t, int64_t, void*); typedef int64_t (*iFiiiN_t)(int64_t, int64_t, int64_t, ...); typedef int64_t (*iFipii_t)(int64_t, void*, int64_t, int64_t); +typedef int64_t (*iFippi_t)(int64_t, void*, void*, int64_t); typedef int64_t (*iFippL_t)(int64_t, void*, void*, uintptr_t); typedef int64_t (*iFpipp_t)(void*, int64_t, void*, void*); typedef int64_t (*iFpipV_t)(void*, int64_t, void*, ...); @@ -109,6 +111,7 @@ typedef int64_t (*iFppipppp_t)(void*, void*, int64_t, void*, void*, void*, void* GO(tdestroy, vFpp_t) \ GO(warn, vFpV_t) \ GO(warnx, vFpV_t) \ + GO(fstat, iFip_t) \ GO(__sigsetjmp, iFpi_t) \ GO(backtrace, iFpi_t) \ GO(munmap, iFpL_t) \ @@ -116,6 +119,7 @@ typedef int64_t (*iFppipppp_t)(void*, void*, int64_t, void*, void*, void*, void* GO(dl_iterate_phdr, iFpp_t) \ GO(execv, iFpp_t) \ GO(execvp, iFpp_t) \ + GO(lstat, iFpp_t) \ GO(sigaltstack, iFpp_t) \ GO(stat, iFpp_t) \ GO(swapcontext, iFpp_t) \ @@ -192,6 +196,7 @@ typedef int64_t (*iFppipppp_t)(void*, void*, int64_t, void*, void*, void*, void* GO(epoll_ctl, iFiiip_t) \ GO(semctl, iFiiiN_t) \ GO(epoll_wait, iFipii_t) \ + GO(fstatat, iFippi_t) \ GO(readlinkat, iFippL_t) \ GO(__vasprintf_chk, iFpipp_t) \ GO(glob, iFpipp_t) \ |