Newer
Older
Tardis / lang / types.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef TYPES_H
#define TYPES_H

// Opaque type for an object
typedef void *Object;

// Opaque type for the VM state
typedef void *VmState;

#endif