lib: c: io: implement getdents()

This commit is contained in:
2026-03-24 12:42:39 +00:00
parent 660cb3bd71
commit e30368553f
4 changed files with 44 additions and 0 deletions

View File

@@ -12,4 +12,6 @@ extern int write(int fd, const void *buf, size_t count);
extern off_t lseek(int fd, off_t offset, int whence);
extern long getdents(int fd, struct dentry *dirp, unsigned int count);
#endif