diff options
author | Steve Hay <SteveHay@planit.com> | 2005-04-22 09:59:54 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-04-22 09:59:54 +0000 |
commit | 77304e8591c15cb2d1b3ddf232411b6eeff78dce (patch) | |
tree | cf5da6edd7458f48a886ee6ffd99897eb96f0f09 /proto.h | |
parent | 9e27e96ad8a80dcef2399eb03105fd8195e035f3 (diff) | |
download | perl-77304e8591c15cb2d1b3ddf232411b6eeff78dce.tar.gz |
Fix more Win32 linker errors following change 24271
This clears up problems with Perl_free_global_struct and
Perl_init_global_struct
p4raw-id: //depot/perl@24280
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -830,6 +830,8 @@ PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes); PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); #if defined(PERL_GLOBAL_STRUCT) PERL_CALLCONV struct perl_vars * Perl_GetVars(pTHX); +PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX); +PERL_CALLCONV void Perl_free_global_struct(pTHX_ struct perl_vars*); #endif PERL_CALLCONV int Perl_runops_standard(pTHX); PERL_CALLCONV int Perl_runops_debug(pTHX); @@ -1423,7 +1425,4 @@ PERL_CALLCONV bool Perl_is_gv_magical_sv(pTHX_ SV *name, U32 flags); PERL_CALLCONV char* Perl_savesvpv(pTHX_ SV* sv); -PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX); -PERL_CALLCONV void Perl_free_global_struct(pTHX_ struct perl_vars*); - END_EXTERN_C |