diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2024-12-25 22:28:29 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-25 15:28:29 +0100 |
| commit | 91a8fef1bba2b5e398efcfab6c94ba757b34c32c (patch) | |
| tree | 99d0d74080366360a1169aeaf6a3656b392fd24e /src/wrapped/generated/wrappedlibctypes.h | |
| parent | a56a66a2270dbdfdb8ad4febb4b58bdc028eceb2 (diff) | |
| download | box64-91a8fef1bba2b5e398efcfab6c94ba757b34c32c.tar.gz box64-91a8fef1bba2b5e398efcfab6c94ba757b34c32c.zip | |
[WRAPPED] Always return ENOSYS in the deprecated sysctl (#2204)
Diffstat (limited to 'src/wrapped/generated/wrappedlibctypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibctypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrappedlibctypes.h b/src/wrapped/generated/wrappedlibctypes.h index 07593e86..0eb6cd89 100644 --- a/src/wrapped/generated/wrappedlibctypes.h +++ b/src/wrapped/generated/wrappedlibctypes.h @@ -102,6 +102,7 @@ typedef void* (*pFpLLiN_t)(void*, uintptr_t, uintptr_t, int32_t, ...); typedef void* (*pFppLLp_t)(void*, void*, uintptr_t, uintptr_t, void*); typedef void* (*pFpppLp_t)(void*, void*, void*, uintptr_t, void*); typedef void (*vFiipupV_t)(int32_t, int32_t, void*, uint32_t, void*, ...); +typedef int32_t (*iFpipppL_t)(void*, int32_t, void*, void*, void*, uintptr_t); typedef int32_t (*iFpLiLpp_t)(void*, uintptr_t, int32_t, uintptr_t, void*, void*); typedef int32_t (*iFpLiLpV_t)(void*, uintptr_t, int32_t, uintptr_t, void*, ...); typedef int32_t (*iFpppppp_t)(void*, void*, void*, void*, void*, void*); @@ -326,6 +327,8 @@ typedef int32_t (*iFppipppp_t)(void*, void*, int32_t, void*, void*, void*, void* GO(lfind, pFpppLp_t) \ GO(lsearch, pFpppLp_t) \ GO(error_at_line, vFiipupV_t) \ + GO(__sysctl, iFpipppL_t) \ + GO(sysctl, iFpipppL_t) \ GO(__vsnprintf_chk, iFpLiLpp_t) \ GO(__snprintf_chk, iFpLiLpV_t) \ GO(__swprintf_chk, iFpLiLpV_t) \ |