From 2c14e702f6736ac833c682dc2ea3fff11a5ed683 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 10 Mar 2015 18:24:02 +0100 Subject: [PATCH] Update libretro-common --- libretro-common/file/file_path.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 2938b354b5..c638e3cf0b 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -695,6 +695,7 @@ void fill_pathname_join_delim(char *out_path, const char *dir, rarch_assert(strlcat(out_path, path, size) < size); } +#if defined(RARCH_INTERNAL) void fill_pathname_expand_special(char *out_path, const char *in_path, size_t size) { @@ -735,6 +736,7 @@ void fill_pathname_expand_special(char *out_path, rarch_assert(strlcpy(out_path, in_path, size) < size); } +#endif /** * fill_short_pathname_representation: @@ -775,6 +777,7 @@ void fill_short_pathname_representation(char* out_rep, strlcpy(out_rep,path_short, size); } +#if defined(RARCH_INTERNAL) void fill_pathname_abbreviate_special(char *out_path, const char *in_path, size_t size) { @@ -820,7 +823,7 @@ void fill_pathname_abbreviate_special(char *out_path, rarch_assert(strlcpy(out_path, in_path, size) < size); } -#ifndef RARCH_CONSOLE +#if !defined(RARCH_CONSOLE) void fill_pathname_application_path(char *buf, size_t size) { size_t i; @@ -878,3 +881,5 @@ void fill_pathname_application_path(char *buf, size_t size) #endif } #endif + +#endif