Changeset 3858 for src/perl5

Show
Ignore:
Timestamp:
05/25/05 04:43:12 (4 years ago)
Author:
clkao
svk:copy_cache_prev:
5385
Message:

call returns SV *, not char *.

Location:
src/perl5
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/perl5/perl5.c

    r3857 r3858  
    126126} 
    127127 
    128 char * 
     128SV * 
    129129perl5_call(char *subname, int argc, SV** args) 
    130130{ 
  • src/perl5/perl5.h

    r3857 r3858  
    55PerlInterpreter * perl5_init ( int argc, char **argv ); 
    66char * perl5_SvPV ( SV * sv ); 
    7 char * perl5_call(char *subname, int argc, SV** args); 
     7SV * perl5_call(char *subname, int argc, SV** args);