summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontends/kolibrios/kolibri_filesystem.c45
-rw-r--r--frontends/kolibrios/kolibri_filesystem.h22
2 files changed, 0 insertions, 67 deletions
diff --git a/frontends/kolibrios/kolibri_filesystem.c b/frontends/kolibrios/kolibri_filesystem.c
deleted file mode 100644
index 65a5f4129..000000000
--- a/frontends/kolibrios/kolibri_filesystem.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#include "kolibri_filesystem.h"
-#include <sys/types.h>
-
-int mkdir(char *dirname, long mode) {
-
-}
-
-
-DIR *opendir(char *path) {
-
-}
-
-
-struct dirent *readdir(DIR* dirp) {
-
-}
-
-int scandir(const char *dirp, struct dirent ***namelist,
- int (*filter)(const struct dirent *),
- int (*compar)(const struct dirent **, const struct dirent **)) {
-
-}
-
-char *realpath(const char *path, char *resolved_path) {
-
-}
-
-int closedir(DIR* opened_dir) {
-
-}
-
-/* int access(const char *pathname, int mode) { */
-
-/* } */
-
-/* ssize_t pread(int fd, void *buf, size_t count, off_t offset) */
-/* { */
-
-/* } */
-
-/* ssize_t pwrite(int fd, const void *buf, size_t count, off_t offset) */
-/* { */
-
-/* } */
-
diff --git a/frontends/kolibrios/kolibri_filesystem.h b/frontends/kolibrios/kolibri_filesystem.h
deleted file mode 100644
index c056cef36..000000000
--- a/frontends/kolibrios/kolibri_filesystem.h
+++ /dev/null
@@ -1,22 +0,0 @@
-struct dirent {
-
-};
-
-struct stat {
-
-};
-
-struct DIR {
-
-};
-
-typedef struct DIR DIR;
-
-int mkdir(char *dirname, long mode);
-DIR *opendir(char *path);
-int stat(char *, struct stat *);
-int closedir(DIR *dirp);
-struct dirent *readdir(DIR* dirp);
-int scandir(const char *dirp, struct dirent ***namelist,
- int (*filter)(const struct dirent *),
- int (*compar)(const struct dirent **, const struct dirent **));