Update libc

This commit is contained in:
Alex
2022-11-07 08:34:02 +02:00
parent a003ec0889
commit 68e65dd602
10 changed files with 98 additions and 1 deletions

28
.vscode/c_boilerplates.code-snippets vendored Normal file
View File

@ -0,0 +1,28 @@
{
"Fennix Kernel Header": {
"prefix": [
"head",
],
"body": [
"#ifndef __FENNIX_LIBC_${2:header}_H__",
"#define __FENNIX_LIBC_${2:header}_H__",
"",
"#include <types.h>",
"",
"$0",
"",
"#endif // !__FENNIX_LIBC_${2:header}_H__",
""
],
"description": "Create kernel header."
},
"Fennix Kernel brief": {
"prefix": [
"brief",
],
"body": [
"/** @brief $0 */"
],
"description": "Create kernel documentation brief."
}
}

26
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/libc/include/**",
"${workspaceFolder}/out/system/include**"
],
"defines": [
"__debug_vscode__",
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
"GIT_COMMIT_SHORT=\"0000000\"",
"DEBUG=\"1\""
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools",
"compilerArgs": [
"-pipe",
]
}
],
"version": 4
}