require "./sys/types" require "./sys/stat" require "./unistd" lib LibC F_GETFD = 1 F_SETFD = 2 F_GETFL = 3 F_SETFL = 4 FD_CLOEXEC = 1 O_CLOEXEC = 0o2000000 O_CREAT = 0o100 O_EXCL = 0o200 O_NOFOLLOW = 0o400000 O_TRUNC = 0o1000 O_APPEND = 0o2000 O_NONBLOCK = 0o4000 O_SYNC = 0o4010000 O_RDONLY = 0o0 O_RDWR = 0o2 O_WRONLY = 0o1 AT_FDCWD = -100 struct Flock l_type : Short l_whence : Short l_start : OffT l_len : OffT l_pid : PidT end fun fcntl(fd : Int, cmd : Int, ...) : Int fun open(file : Char*, oflag : Int, ...) : Int end