PatchworkOS  966e257
A non-POSIX operating system.
Loading...
Searching...
No Matches
user.h
Go to the documentation of this file.
1#pragma once
2
3/**
4 * @brief User space only functions and definitions.
5 * @defgroup libstd_user User Space
6 * @ingroup libstd
7 *
8 * While the rest of the standard library is shared between kernel and user space, this module contains code that will
9 * only be used in user space.
10 *
11 * @{
12 */
13
14void _user_init(void);
15
16/** @} */
void _user_init(void)
Definition user.c:29