feat: implemented errno, strtol. Started ustar. Reformatted headers and

code. Added some self-tests. Started prepwork for vfs.
This commit is contained in:
2021-03-14 21:14:22 +01:00
parent 586b8191b4
commit 77c8dca72a
39 changed files with 504 additions and 60 deletions

View File

@@ -36,7 +36,7 @@ typedef struct {
bool xsave: 1;
bool osxsave: 1;
bool avx: 1;
} cpu_features_ecx ;
} cpu_features_ecx;
typedef struct {
bool fpu: 1;
@@ -72,7 +72,7 @@ typedef struct {
bool ia64: 1;
bool pbe: 1;
} cpu_features_edx ;
} cpu_features_edx;
enum cpu_features {
CPUID_FEAT_ECX_SSE3 = 1 << 0,