Update kernel

This commit is contained in:
Alex
2023-08-06 04:53:14 +03:00
parent 3b65386399
commit 2c51e4432f
181 changed files with 21873 additions and 21475 deletions

View File

@@ -22,6 +22,16 @@
#include <assert.h>
#include <debug.h>
#include <filesystem.hpp>
#include "../syscalls.h"
void TestSeekMacros() /* static assert, no constructor needed */
{
static_assert(SYSCALL_SEEK_SET == SEEK_SET);
static_assert(SYSCALL_SEEK_CUR == SEEK_CUR);
static_assert(SYSCALL_SEEK_END == SEEK_END);
}
__constructor void TestMacros()
{
{