quickfix fpath in secmod

This commit is contained in:
swrup 2026-03-12 13:11:10 +01:00
parent 2361fa13e1
commit e8d7b413ad
3 changed files with 29 additions and 7 deletions

View file

@ -7,6 +7,12 @@ end)
include Fat
type entry = Mfat.entry = {
name: string;
is_dir: bool;
size: int32;
}
type t = Mkernel.Block.t Mfat.t
module type FS = sig