summaryrefslogtreecommitdiff
path: root/src/user/lib/include/dirent.h
diff options
context:
space:
mode:
authordzwdz2023-06-09 17:22:31 +0200
committerdzwdz2023-06-09 17:22:31 +0200
commit112eafe13c3628cad6e692179c064dbbc3be2d8b (patch)
tree04bdb3df2d2e6fd7042dbefa117ff0e5a5447476 /src/user/lib/include/dirent.h
parent668655053911072741883fd258c23e9d0668a853 (diff)
ports/dash: stub out everything needed for dash to compile
Diffstat (limited to 'src/user/lib/include/dirent.h')
-rw-r--r--src/user/lib/include/dirent.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/user/lib/include/dirent.h b/src/user/lib/include/dirent.h
new file mode 100644
index 0000000..35ba1e9
--- /dev/null
+++ b/src/user/lib/include/dirent.h
@@ -0,0 +1,20 @@
+#pragma once
+#include <bits/panic.h>
+
+typedef struct DIR DIR;
+struct dirent {
+ ino_t d_ino;
+ char d_name[256]; /* NAME_MAX + 1 */
+};
+
+static inline DIR *opendir(const char *name) {
+ __libc_panic("unimplemented");
+}
+
+static inline int closedir(DIR *dir) {
+ __libc_panic("unimplemented");
+}
+
+static inline struct dirent *readdir(DIR *dir) {
+ __libc_panic("unimplemented");
+}