mpri-funcprog-project/project/src/kremlin/Common.ml
2017-12-13 14:10:41 +01:00

20 lines
325 B
Standard ML

type calling_convention =
| StdCall
| CDecl
| FastCall
[@@deriving show { with_path = false }]
type lifetime =
| Eternal
| Stack
[@@deriving show { with_path = false }]
type flag =
| Private
| NoExtract
| CInline
| Substitute
| GcType
| Comment of string
[@@deriving show { with_path = false }]