mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-17 21:49:10 -04:00
12 lines
219 B
C++
12 lines
219 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
struct Stack
|
|
{
|
|
int id;
|
|
Stack() : id(0)
|
|
{}
|
|
};
|