Put RARCH_INTERNAL ifdef around this

This commit is contained in:
twinaphex 2018-03-28 16:41:37 +02:00
parent d17eee9cca
commit 89e912087b
2 changed files with 2 additions and 2 deletions

View File

@ -1107,7 +1107,7 @@ void path_basedir_wrapper(char *path)
snprintf(path, 3, ".%s", path_default_slash()); snprintf(path, 3, ".%s", path_default_slash());
} }
#if !defined(RARCH_CONSOLE) #if !defined(RARCH_CONSOLE) && defined(RARCH_INTERNAL)
void fill_pathname_application_path(char *s, size_t len) void fill_pathname_application_path(char *s, size_t len)
{ {
size_t i; size_t i;

View File

@ -454,7 +454,7 @@ void path_basedir_wrapper(char *path);
**/ **/
void fill_pathname_slash(char *path, size_t size); void fill_pathname_slash(char *path, size_t size);
#ifndef RARCH_CONSOLE #if !defined(RARCH_CONSOLE) && defined(RARCH_INTERNAL)
void fill_pathname_application_path(char *buf, size_t size); void fill_pathname_application_path(char *buf, size_t size);
#endif #endif