diff --git a/libc/include/dirent.h b/libc/include/dirent.h new file mode 100644 index 00000000..2d6966f0 --- /dev/null +++ b/libc/include/dirent.h @@ -0,0 +1,15 @@ +#pragma once + +#include + +__BEGIN_DECLS + +struct DIR; + +struct dirent +{ + ino_t d_ino; + char d_name[]; +}; + +__END_DECLS \ No newline at end of file