diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-11-24 22:04:20 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-11-24 22:04:20 +0000 |
commit | 73a462964be81fd1ed02a757d25ecbbf6c0e2686 (patch) | |
tree | 216f8cc93970f195613d54d3c752200cf1ed1602 /universal.c | |
parent | 565e2fca1eb6efc2373e28812a12c2d4e3e9470e (diff) | |
download | perl-73a462964be81fd1ed02a757d25ecbbf6c0e2686.tar.gz |
Part-1 of tweaks to allow Tk to be "compiled"
Make XS_UNIVERSAL_xxx non-static so they can be found in libperl.
(May also need attention to exports etc. - to follow.)
p4raw-id: //depot/perl@2298
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/universal.c b/universal.c index 9bf3efcb6e..d0ef90dcdb 100644 --- a/universal.c +++ b/universal.c @@ -108,7 +108,6 @@ sv_derived_from(SV *sv, char *name) #include "XSUB.h" -static XS(XS_UNIVERSAL_isa) { dXSARGS; @@ -125,7 +124,6 @@ XS(XS_UNIVERSAL_isa) XSRETURN(1); } -static XS(XS_UNIVERSAL_can) { dXSARGS; @@ -160,7 +158,6 @@ XS(XS_UNIVERSAL_can) XSRETURN(1); } -static XS(XS_UNIVERSAL_VERSION) { dXSARGS; |