lib: c: implement munmap()

This commit is contained in:
2026-03-18 20:49:19 +00:00
parent c11d55d675
commit cdf828be2d
2 changed files with 35 additions and 0 deletions

View File

@@ -41,5 +41,6 @@ extern void *mmap(
int flags,
int fd,
off_t offset);
extern int munmap(void *addr, size_t length);
#endif