Apply static to some local-only functions

This commit is contained in:
Lioncash 2015-02-13 09:54:45 -05:00
parent 56cce66121
commit 55e9c2b593
3 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ retro_get_cpu_features_t perf_get_cpu_features_cb;
#endif
resampler_simd_mask_t resampler_get_cpu_features(void)
static resampler_simd_mask_t resampler_get_cpu_features(void)
{
#ifdef RARCH_INTERNAL
return rarch_get_cpu_features();

View File

@ -62,7 +62,7 @@ static float easing_out_cubic(float t, float b, float c, float d)
return c * (pow(t / d - 1, 3) + 1) + b;
}
float easing_in_out_cubic(float t, float b, float c, float d)
static float easing_in_out_cubic(float t, float b, float c, float d)
{
t = t / d * 2;
if (t < 1)

View File

@ -163,7 +163,7 @@ static void menu_entries_content_list_push(
string_list_free(str_list);
}
int menu_entries_push_cores_list(file_list_t *list, core_info_t *info,
static int menu_entries_push_cores_list(file_list_t *list, core_info_t *info,
const char *path, bool push_databases_enable)
{
size_t i;