summaryrefslogtreecommitdiff
path: root/cygwin
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2007-02-19 17:50:18 -0800
committerSteve Hay <SteveHay@planit.com>2007-02-22 09:09:31 +0000
commit78ff2d7be71ff9f6811d8b05bb66c4c4707951ba (patch)
treea2013860b69217e66dd1332f49526b63ed76d5b8 /cygwin
parent097911b5e678dd1e36060b9c7d2408b8eb887a7a (diff)
downloadperl-78ff2d7be71ff9f6811d8b05bb66c4c4707951ba.tar.gz
Re: Win32 modules & cygwin
From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org> Message-ID: <1254.67.42.109.122.1171965018.squirrel@67.42.109.122> Also includes integration & deletion of win32/ext/Win32API to ext/Win32API, and addition of copyright message and corrections to spacing/tabbing as suggested by Jan Dubois. p4raw-id: //depot/perl@30379
Diffstat (limited to 'cygwin')
-rw-r--r--cygwin/cygwin.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cygwin/cygwin.c b/cygwin/cygwin.c
index ec564f68cf..b774394c7c 100644
--- a/cygwin/cygwin.c
+++ b/cygwin/cygwin.c
@@ -197,9 +197,16 @@ void
init_os_extras(void)
{
char *file = __FILE__;
+ CV *cv;
dTHX;
newXS("Cwd::cwd", Cygwin_cwd, file);
newXS("Cygwin::winpid_to_pid", XS_Cygwin_winpid_to_pid, file);
newXS("Cygwin::pid_to_winpid", XS_Cygwin_pid_to_winpid, file);
+
+ if ((cv = get_cv("Win32CORE::bootstrap", 0))) {
+ dSP;
+ PUSHMARK(SP);
+ (void)call_sv((SV *)cv, G_EVAL|G_DISCARD|G_VOID);
+ }
}