summaryrefslogtreecommitdiff
path: root/wince
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-01-07 03:13:05 +0000
committerSteve Peters <steve@fisharerojo.org>2006-01-07 03:13:05 +0000
commit751e07d25baab526d39c963788455e4174c307b0 (patch)
treef8d8c478d347ce635d7a1193742d03acb9334444 /wince
parent60c5c75c0b7451949440be1f349d3e9b57103cb0 (diff)
downloadperl-751e07d25baab526d39c963788455e4174c307b0.tar.gz
Additional const prototype fixes.
p4raw-id: //depot/perl@26694
Diffstat (limited to 'wince')
-rw-r--r--wince/wince.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wince/wince.c b/wince/wince.c
index da30dcb50e..af0d364c4f 100644
--- a/wince/wince.c
+++ b/wince/wince.c
@@ -354,7 +354,7 @@ has_shell_metachars(char *ptr)
* the library functions will get the correct environment
*/
PerlIO *
-Perl_my_popen(pTHX_ char *cmd, char *mode)
+Perl_my_popen(pTHX_ const char *cmd, const char *mode)
{
printf("popen(%s)\n", cmd);
@@ -629,7 +629,7 @@ Perl_do_spawn_nowait(pTHX_ char *cmd)
}
bool
-Perl_do_exec(pTHX_ char *cmd)
+Perl_do_exec(pTHX_ const char *cmd)
{
do_spawn2(aTHX_ cmd, EXECF_EXEC);
return FALSE;