X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=BlackBox%2F_Linux_%2FLin%2FMod%2Fgen-Libc%2Fcustom;h=c83a878ab92597947316779882af9fc5d72e702f;hb=29e8994d1ee246792709846d65715d0b7e825531;hp=1d052c1825d38907f3c01df9a1c7bfbdb9136683;hpb=1917111f84110463d2aa92ba31e54fe9d881c5cd;p=bbcp.git diff --git a/BlackBox/_Linux_/Lin/Mod/gen-Libc/custom b/BlackBox/_Linux_/Lin/Mod/gen-Libc/custom index 1d052c1..c83a878 100644 --- a/BlackBox/_Linux_/Lin/Mod/gen-Libc/custom +++ b/BlackBox/_Linux_/Lin/Mod/gen-Libc/custom @@ -4,6 +4,28 @@ TYPE off64_t* = LONGINT; + blkcnt64_t* = LONGINT; + ino64_t* = LONGINT; + + (* Ubuntu 18.04 /usr/include/i386-linux-gnu/bits/stat.h: *) + stat64_t* = RECORD [untagged] + st_dev*: dev_t; + __pad1: int; (* unsigned int *) + __st_ino: ino_t; + st_mode*: mode_t; + st_nlink*: nlink_t; + st_uid*: uid_t; + st_gid*: gid_t; + st_rdev*: dev_t; + __pad2: int; (* unsigned int *) + st_size*: off64_t; + st_blksize*: blksize_t; + st_blocks*: blkcnt64_t; + st_atim*: timespec_t; + st_mtim*: timespec_t; + st_ctim*: timespec_t; + st_ino*: ino64_t; + END; (* Ubuntu 17.10 /usr/include/i386-linux-gnu/bits/types/sigval_t.h: *) sigval_t* = RECORD [union] @@ -37,10 +59,12 @@ stdin*, stdout*, stderr* : PtrFILE; *) - PROCEDURE [ccall] __errno_location*(): INTEGER; - - PROCEDURE [ccall] __xstat* (version: INTEGER; filename: PtrSTR; VAR buf: stat_t): INTEGER; + PROCEDURE [ccall] __errno_location*(): PtrVoid; + PROCEDURE [ccall] __xstat* (version: int; filename: PtrSTR; VAR buf: stat_t): int; + PROCEDURE [ccall] __xstat64* (version: int; filename: PtrSTR; VAR buf: stat64_t): int; + PROCEDURE [ccall] fopen64* (path, mode: PtrSTR): PtrFILE; PROCEDURE [ccall] lseek64* (fd: int; offset: off64_t; whence: int): off64_t; + PROCEDURE [ccall] fseeko64* (stream: PtrFILE; off: off64_t; whence: int): int; PROCEDURE [ccall] sigsetjmp* ["__sigsetjmp"] (VAR env: sigjmp_buf; savemask: int): int;