diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-07 03:13:05 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-07 03:13:05 +0000 |
commit | 751e07d25baab526d39c963788455e4174c307b0 (patch) | |
tree | f8d8c478d347ce635d7a1193742d03acb9334444 /wince | |
parent | 60c5c75c0b7451949440be1f349d3e9b57103cb0 (diff) | |
download | perl-751e07d25baab526d39c963788455e4174c307b0.tar.gz |
Additional const prototype fixes.
p4raw-id: //depot/perl@26694
Diffstat (limited to 'wince')
-rw-r--r-- | wince/wince.c | 4 |
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; |