Do not support old libC.
The build was successful. Podrobnosti

This commit is contained in:
Rafal Kupiec 2019-06-28 19:43:23 +02:00
rodič 48d5088265
revize a6d89da16b
Podepsáno: belliash
ID GPG klíče: 4E829243E0CFE6B4
1 změnil soubory, kde provedl 0 přidání a 6 odebrání

Zobrazit soubor

@ -6914,7 +6914,6 @@ static int UnixVfs_Rename(const char *zOld, const char *zNew) {
}
/* int (*xRealpath)(const char *,ph7_context *) */
static int UnixVfs_Realpath(const char *zPath, ph7_context *pCtx) {
#ifndef PH7_UNIX_OLD_LIBC
char *zReal;
zReal = realpath(zPath, 0);
if(zReal == 0) {
@ -6924,11 +6923,6 @@ static int UnixVfs_Realpath(const char *zPath, ph7_context *pCtx) {
/* Release the allocated buffer */
free(zReal);
return PH7_OK;
#else
zPath = 0; /* cc warning */
pCtx = 0;
return -1;
#endif
}
/* int (*xSleep)(unsigned int) */
static int UnixVfs_Sleep(unsigned int uSec) {