aboutsummaryrefslogtreecommitdiffstats
path: root/scmmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'scmmain.c')
-rw-r--r--scmmain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/scmmain.c b/scmmain.c
index 7e501fa..93c2985 100644
--- a/scmmain.c
+++ b/scmmain.c
@@ -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;