diff options
Diffstat (limited to 'src/std')
-rw-r--r-- | src/std/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/std/file.c b/src/std/file.c index 098b18f..177ccbc 100644 --- a/src/std/file.c +++ b/src/std/file.c @@ -15,6 +15,7 @@ #define SCANDIR_PATH_LENGTH 4096 #define MAX_FILE_SIZE 1024*1024*48 /* 48 mb */ +#if 0 static int scan_dir_recursive_internal(char *dir_path, int path_length, scan_dir_callback_func callback_func, void *userdata) { DIR *dir; @@ -165,6 +166,7 @@ int mapped_file_deinit(MappedFile *self) { else return 0; } +#endif typedef enum { REGULAR, |