Integrate VFS/ext2 code

This commit is contained in:
Mark
2019-10-25 11:20:30 +03:00
parent 6033a7c2d5
commit 1040973125
29 changed files with 3976 additions and 2 deletions
+1
View File
@@ -5,6 +5,7 @@
#pragma once
#include "sys/types.h"
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
void *memcpy(void *restrict dst, const void *restrict src, size_t cnt);