diff options
author | Anton Kling <anton@kling.gg> | 2024-12-31 16:10:13 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-31 16:10:13 +0100 |
commit | 4b1577f80962e8cce055fdb4d6f641187df0bbe0 (patch) | |
tree | 9bc62b9478650a244158cd9ae3eb1db41eb7c556 /include/dirent.h | |
parent | 934d8d5ee4c2ce756fea79d74d8562ad597cc5e5 (diff) |
libc: opendir should not keep a internal offset
Diffstat (limited to 'include/dirent.h')
-rw-r--r-- | include/dirent.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/dirent.h b/include/dirent.h index 66e8e8f..be9c928 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -17,7 +17,6 @@ struct dirent { typedef struct { int fd; struct dirent internal_direntry; - int dir_num; } DIR; #ifndef KERNEL |