Fixing include paths for new structure

Removed non-sensical libc folder from project
This commit is contained in:
2022-08-17 14:57:50 +02:00
parent 3b3e2597a1
commit bbfea39c23
21 changed files with 54 additions and 57 deletions

8
src/kernel/Lib/mem.h Normal file
View File

@ -0,0 +1,8 @@
inline void* memset (void* ptr, int value, size_t num){
for( int i = 0; i < num; i++ )
{
unsigned char* data = (unsigned char*)ptr+ i;
*data = (unsigned char)value;
}
return ptr;
}