LibC: add dirent.h

This commit is contained in:
Bananymous 2023-03-25 02:08:33 +02:00
parent 0d356c5bbc
commit a011c0384f
1 changed files with 15 additions and 0 deletions

15
libc/include/dirent.h Normal file
View File

@ -0,0 +1,15 @@
#pragma once
#include <sys/types.h>
__BEGIN_DECLS
struct DIR;
struct dirent
{
ino_t d_ino;
char d_name[];
};
__END_DECLS