This commit is contained in:
twinaphex 2017-06-16 15:33:30 +02:00
parent 8e8ead979e
commit de9317117b
2 changed files with 1 additions and 11 deletions

View File

@ -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);

View File

@ -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