mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-27 10:28:13 -04:00
7 lines
67 B
C++
7 lines
67 B
C++
#pragma once
|
|
|
|
struct Stack {
|
|
int id;
|
|
Stack() : id(0) {}
|
|
};
|