websdk中fcntl调用强行指定为旧版本

This commit is contained in:
luoliangyi 2022-10-26 09:55:20 +08:00
parent b015399584
commit 9bfa6a9a70
1 changed files with 4 additions and 0 deletions

View File

@ -35158,6 +35158,10 @@ static int posixOpen(const char *zFile, int flags, int mode){
static int openDirectory(const char*, int*);
static int unixGetpagesize(void);
#if !defined(_MSC_VER)
asm (".symver fcntl64, fcntl@GLIBC_2.2.5");
#endif
/*
** Many system calls are accessed through pointer-to-functions so that
** they may be overridden at runtime to facilitate fault injection during