diff options
| -rw-r--r-- | firmware/common/dir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/common/dir.h b/firmware/common/dir.h index 83d4bfe..1aa3476 100644 --- a/firmware/common/dir.h +++ b/firmware/common/dir.h @@ -29,6 +29,8 @@ struct dirent { }; extern DIR* opendir(char* name); +extern int closedir(DIR* dir); + extern struct dirent* readdir(DIR* dir); #endif |