ae7e1a91d0
fix(userspace/string.h): gets_s now correctly work with \b chore(kmain): now ring3 is default when pressing any key (instead of ksh) feat(termosh): spawn in termosh
10 lines
193 B
C
10 lines
193 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2026 0xKarinyash
|
|
|
|
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
i32 sys_exit(i32 code);
|
|
i32 sys_spawn(const char* path);
|
|
i32 sys_wait(u64 pid); |