Index: build_run.c =================================================================== --- build_run.c (revision 3925) +++ build_run.c (revision 3926) @@ -43,7 +43,7 @@ extern void sch_rnd_main_uninit(void); -void csch_quit_app(void) +void sch_rnd_quit_app(void) { /* save data if necessary. It not needed, then don't trigger EmergencySave * via our atexit() registering of csch_emergency_save(). We presumably wanted to @@ -58,7 +58,7 @@ rnd_gui->do_exit(rnd_gui); } -char *csch_get_info_program(void) +char *sch_rnd_get_info_program(void) { static gds_t info; static int first_time = 1; @@ -74,7 +74,7 @@ return info.array; } -char *csch_get_info_copyright(void) +char *sch_rnd_get_info_copyright(void) { static gds_t info; static int first_time = 1; @@ -90,7 +90,7 @@ return info.array; } -char *csch_get_info_websites(const char **url_out) +char *sch_rnd_get_info_websites(const char **url_out) { static gds_t info; static int first_time = 1; @@ -110,7 +110,7 @@ return info.array; } -char *csch_get_info_comments(void) +char *sch_rnd_get_info_comments(void) { static gds_t info; static int first_time = 1; @@ -120,9 +120,9 @@ first_time = 0; gds_init(&info); - tmp = csch_get_info_program(); + tmp = sch_rnd_get_info_program(); gds_append_str(&info, tmp); - tmp = csch_get_info_websites(NULL); + tmp = sch_rnd_get_info_websites(NULL); gds_append_str(&info, tmp); } return info.array; @@ -129,7 +129,7 @@ } -char *csch_get_info_compile_options(void) +char *sch_rnd_get_info_compile_options(void) { rnd_hid_t **hids; int i; @@ -190,7 +190,7 @@ return info.array; } -char *csch_get_info_license(void) +char *sch_rnd_get_info_license(void) { static gds_t info; static int first_time = 1;