blob: 4f5814deb24e83d17ed68879343fb1b4a365a01c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
(* PR 4470: simplified from OMake's sources *)
module rec DirElt
: sig
type t = DirRoot | DirSub of DirHash.t
end
= struct
type t = DirRoot | DirSub of DirHash.t
end
and DirCompare
: sig
type t = DirElt.t
end
= struct
type t = DirElt.t
end
and DirHash
: sig
type t = DirElt.t list
end
= struct
type t = DirCompare.t list
end
|