diff options
author | Anton Kling <anton@kling.gg> | 2024-10-03 14:20:51 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-10-03 14:20:51 +0200 |
commit | a8226de3e53937b579705586a16ccc884b8efb5d (patch) | |
tree | 63b2967b19772dd4ca3b44c486d5923948438a5d /include | |
parent | 9902f9a2b6c5030000e220841b5868158a0bc05d (diff) |
libc: Add fdopendir()
Diffstat (limited to 'include')
-rw-r--r-- | include/dirent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index b986ddb..dcd7f59 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -22,6 +22,7 @@ typedef struct { #ifndef KERNEL DIR *opendir(const char *dirname); +DIR *fdopendir(int fd); struct dirent *readdir(DIR *dir); int closedir(DIR *dirp); int alphasort(const struct dirent **d1, const struct dirent **d2); |