sig
  type stats =
    Unix.LargeFile.stats = {
    st_dev : int;
    st_ino : int;
    st_kind : Uwt_compat.Lwt_unix.file_kind;
    st_perm : Uwt_compat.Lwt_unix.file_perm;
    st_nlink : int;
    st_uid : int;
    st_gid : int;
    st_rdev : int;
    st_size : int64;
    st_atime : float;
    st_mtime : float;
    st_ctime : float;
  }
  val stat : string -> Unix.LargeFile.stats Lwt.t
  val lstat : string -> Unix.LargeFile.stats Lwt.t
  val fstat : Uwt_compat.Lwt_unix.file_descr -> Unix.LargeFile.stats Lwt.t
  val lseek :
    Uwt_compat.Lwt_unix.file_descr -> int64 -> Unix.seek_command -> int Lwt.t
  val truncate : string -> int64 -> unit Lwt.t
  val ftruncate : Uwt_compat.Lwt_unix.file_descr -> int64 -> unit Lwt.t
  val file_exists : string -> bool Lwt.t
end