diff options
Diffstat (limited to 'perl-install/c')
-rw-r--r-- | perl-install/c/stuff.xs.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 99bd4fd5f..6813ef2e3 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -102,6 +102,10 @@ void initIMPS2() { void log_message(const char * s, ...) {} +'; + +print ' + SV * iconv_(char* s, char* from_charset, char* to_charset) { iconv_t cd = iconv_open(to_charset, from_charset); char* retval = s; @@ -121,10 +125,6 @@ SV * iconv_(char* s, char* from_charset, char* to_charset) { return newSVpv(retval, 0); } -'; - -print ' - MODULE = c::stuff PACKAGE = c::stuff '; |