summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-04-22 09:59:54 +0000
committerSteve Hay <SteveHay@planit.com>2005-04-22 09:59:54 +0000
commit77304e8591c15cb2d1b3ddf232411b6eeff78dce (patch)
treecf5da6edd7458f48a886ee6ffd99897eb96f0f09 /proto.h
parent9e27e96ad8a80dcef2399eb03105fd8195e035f3 (diff)
downloadperl-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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/proto.h b/proto.h
index c26f87b229..c3ccf1d0ee 100644
--- a/proto.h
+++ b/proto.h
@@ -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