The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #108 from talex5/fix-build

Fix build errors

authored by

Thomas Leonard and committed by
GitHub
5e54d7e7 d42cffe5

+5 -1
+3 -1
vendor/opam/uring/lib/uring/uring.ml
··· 23 23 24 24 module type FLAGS = sig 25 25 type t = private int 26 + val empty : t 26 27 val of_int : int -> t 27 28 val ( + ) : t -> t -> t 28 29 val mem : t -> t -> bool ··· 30 31 31 32 module Flags = struct 32 33 type t = int 34 + 35 + let empty = 0 33 36 34 37 let of_int x = x 35 38 ··· 54 57 let nonblock = Config.o_nonblock 55 58 let dsync = Config.o_dsync 56 59 let direct = Config.o_direct 57 - let largefile = Config.o_largefile 58 60 let directory = Config.o_directory 59 61 let nofollow = Config.o_nofollow 60 62 let noatime = Config.o_noatime
+2
vendor/opam/uring/lib/uring/uring.mli
··· 90 90 type t = private int 91 91 (** A set of flags. *) 92 92 93 + val empty : t 94 + 93 95 val of_int : int -> t 94 96 95 97 val ( + ) : t -> t -> t