circuitpython/shared-module/supervisor/Runtime.h
2024-05-19 20:40:44 -04:00

14 lines
313 B
C
Executable file

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2018 Michael Schroeder
//
// SPDX-License-Identifier: MIT
#pragma once
#include "py/obj.h"
typedef struct {
mp_obj_base_t base;
// Stores no state currently.
} super_runtime_obj_t;