Source file stat.ml

1
2
3
4
5
6
7
8
9
10
11
12
type t =
  { mtime : Time.t
  ; size : int
  ; perm : Unix.file_perm
  ; kind : Unix.file_kind
  ; dev : int
  ; ino : int
  }

let compare = Poly.compare

external stat : string -> t = "dune_stat"