1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 09:07:44 +00:00

LibC: Implement dirfd().

This commit is contained in:
Andreas Kling 2019-06-03 18:42:40 +02:00
parent 3fa0b6cd92
commit 8af495495b
2 changed files with 17 additions and 9 deletions

View file

@ -25,5 +25,6 @@ typedef struct __DIR DIR;
DIR* opendir(const char* name);
int closedir(DIR*);
struct dirent* readdir(DIR*);
int dirfd(DIR*);
__END_DECLS