diff options
Diffstat (limited to 'scmmain.c')
-rw-r--r-- | scmmain.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -71,7 +71,7 @@ #endif char *scm_find_implpath(execpath) - char *execpath; + const char *execpath; { char *implpath = 0; #ifndef nosve @@ -97,7 +97,7 @@ char *scm_find_implpath(execpath) #endif return implpath; } -char *generic_name[] = { GENERIC_NAME }; +const char * const generic_name[] = { GENERIC_NAME }; #ifdef WINSIGNALS SCM_EXPORT HANDLE scm_hMainThread; @@ -107,7 +107,7 @@ void scmmain_init_user_scm(); int main(argc, argv) int argc; - char **argv; + const char **argv; { char *script_arg = 0; /* location of SCSH style script file or 0. */ char *implpath = 0, **nargv; |