mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-08 05:49:17 +00:00
Updated kernel (tl;dr: improved filesystem, tasking, loading files, etc..)
This commit is contained in:
@ -310,7 +310,7 @@ EXTERNC unsigned int isdelim(char c, char *delim)
|
||||
return 0;
|
||||
}
|
||||
|
||||
EXTERNC int abs(int i) { return i < 0 ? -i : i; }
|
||||
EXTERNC long abs(long i) { return i < 0 ? -i : i; }
|
||||
|
||||
EXTERNC void swap(char *x, char *y)
|
||||
{
|
||||
|
Reference in New Issue
Block a user