diff --git a/file/file_path.c b/file/file_path.c index edd1137..42ff0eb 100644 --- a/file/file_path.c +++ b/file/file_path.c @@ -194,7 +194,7 @@ int32_t path_get_size(const char *path) * * Returns: true (1) if directory could be created, otherwise false (0). **/ -bool mkdir_norecurse(const char *dir) +static bool mkdir_norecurse(const char *dir) { #if defined(_WIN32) int ret = _mkdir(dir); diff --git a/include/file/file_path.h b/include/file/file_path.h index ab1c10a..2fcd947 100644 --- a/include/file/file_path.h +++ b/include/file/file_path.h @@ -473,16 +473,6 @@ bool path_is_valid(const char *path); int32_t path_get_size(const char *path); -/** - * path_mkdir_norecurse: - * @dir : directory - * - * Create directory on filesystem. - * - * Returns: true (1) if directory could be created, otherwise false (0). - **/ -bool mkdir_norecurse(const char *dir); - RETRO_END_DECLS #endif