1 USING: kernel alien.syntax math ;
10 { "nlink_t" "st_nlink" }
14 { "timespec" "st_atimespec" }
15 { "timespec" "st_mtimespec" }
16 { "timespec" "st_ctimespec" }
18 { "blkcnt_t" "st_blocks" }
19 { "blksize_t" "st_blksize" }
20 { "uint32_t" "st_flags" }
21 { "uint32_t" "st_gen" }
22 { "uint32_t" "st_spare0" }
23 { "timespec" "st_birthtimespec" } ;
25 FUNCTION: int __stat13 ( char* pathname, stat* buf ) ;
26 FUNCTION: int __lstat13 ( char* pathname, stat* buf ) ;
28 : stat ( pathname buf -- n ) __stat13 ;
29 : lstat ( pathname buf -- n ) __lstat13 ;