PMM -- finishing up and changing names, types

This commit is contained in:
2017-12-21 21:03:06 +01:00
parent 28916257f1
commit 1a7852de4d
3 changed files with 28 additions and 25 deletions

View File

@@ -30,4 +30,7 @@ void *memset(void *s, int c, size_t n);
void *memmove(void *dest, const void *src, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);
size_t strlen(const char *s);
void pmm_free(uintptr_t page);
uintptr_t pmm_alloc();
#endif