1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021-2025 OCamlPro *)
(* Written by the Owi programmers *)

include
  Func_intf.Make_extern_func
    (struct
      type int32 = Int32.t

      type int64 = Int64.t

      type float32 = Float32.t

      type float64 = Float64.t

      type bool = Bool.t
    end)
    (struct
      type 'a t = 'a
    end)
    (Concrete_memory)