diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-12-15 16:46:51 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-12-15 16:46:51 +0100 |
| commit | 1945dd16716392e70e74efacd19e779f121bd1da (patch) | |
| tree | d806e1e515547089c1f69a0f66eb8697b142b2a4 /libs | |
| parent | e865cae1ad93ab92b0c5e165e17b0552e5a2e6fa (diff) | |
| download | teachos-1945dd16716392e70e74efacd19e779f121bd1da.tar.xz teachos-1945dd16716392e70e74efacd19e779f121bd1da.zip | |
chore: fix missing includes
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/kstd/src/libc/string.cpp | 2 | ||||
| -rw-r--r-- | libs/kstd/src/mutex.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libs/kstd/src/libc/string.cpp b/libs/kstd/src/libc/string.cpp index a9b85fc..319f6fd 100644 --- a/libs/kstd/src/libc/string.cpp +++ b/libs/kstd/src/libc/string.cpp @@ -1,5 +1,7 @@ #include <algorithm> +#include <bit> #include <cstddef> +#include <iterator> #include <span> namespace kstd::libc diff --git a/libs/kstd/src/mutex.cpp b/libs/kstd/src/mutex.cpp index da1357f..5a26154 100644 --- a/libs/kstd/src/mutex.cpp +++ b/libs/kstd/src/mutex.cpp @@ -1,5 +1,7 @@ #include "kstd/mutex" +#include <atomic> + namespace kstd { auto mutex::lock() -> void |
