aboutsummaryrefslogtreecommitdiffstats
path: root/scmmain.c
diff options
context:
space:
mode:
authorThomas Bushnell <tb@debian.org>2006-04-26 23:01:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:32 -0800
commit20402610bf881f67b22eb1600340d8284556ae56 (patch)
tree6a19e5a1b2cc22dccd1003787a70b751f7da4763 /scmmain.c
parent5846f77421a975897a31d6fbf3f520aab385cea3 (diff)
parentae2b295c7deaf2d7c18ad1ed9b6050970e56bae7 (diff)
downloadscm-20402610bf881f67b22eb1600340d8284556ae56.tar.gz
scm-20402610bf881f67b22eb1600340d8284556ae56.zip
Import Debian changes 5e2-1debian/5e2-1
scm (5e2-1) unstable; urgency=low * New upstream release. * Change to continue.h from version 5e1-2 repeated here.
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;