diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-25 15:13:54 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-25 15:13:54 +0100 |
| commit | 8834571b202cf4dc9c649cfb096c213b6ecf1566 (patch) | |
| tree | 1cde1c0f0b823391d3d289ac89591c13be8cbb3b /lib/libc/dirent/closedir.c | |
| parent | 46fadf4bf14360be046b9b770ddf205fad96a0a7 (diff) | |
Move __dirent.h to libc/dirent.h
Diffstat (limited to 'lib/libc/dirent/closedir.c')
| -rw-r--r-- | lib/libc/dirent/closedir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/dirent/closedir.c b/lib/libc/dirent/closedir.c index 873364c2..bc2efb08 100644 --- a/lib/libc/dirent/closedir.c +++ b/lib/libc/dirent/closedir.c @@ -1,8 +1,8 @@ -#include <__dirent.h> // for __DIR -#include <dirent.h> // for DIR, closedir -#include <errno.h> // for EBADF, errno -#include <stdlib.h> // for free -#include <unistd.h> // for close +#include <dirent.h> // for DIR, closedir +#include <errno.h> // for EBADF, errno +#include <libc/dirent.h> // for __DIR +#include <stdlib.h> // for free +#include <unistd.h> // for close int closedir(DIR *dirp) { |
