Merge pull request #1415 from lioncash/prototype

Apply static to some local-only functions
This commit is contained in:
Twinaphex 2015-02-13 16:02:21 +01:00
commit ea6b36fe2a
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 #endif
resampler_simd_mask_t resampler_get_cpu_features(void) static resampler_simd_mask_t resampler_get_cpu_features(void)
{ {
#ifdef RARCH_INTERNAL #ifdef RARCH_INTERNAL
return rarch_get_cpu_features(); 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; 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; t = t / d * 2;
if (t < 1) if (t < 1)

View File

@ -163,7 +163,7 @@ static void menu_entries_content_list_push(
string_list_free(str_list); 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) const char *path, bool push_databases_enable)
{ {
size_t i; size_t i;