This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge win32 and ansiperl branches post _55 tweaks from Sarathy.
[perl5.git] / win32 / runperl.c
1 /* Say NO to CPP! Hallelujah! */
2
3 __declspec(dllimport) int RunPerl(int argc, char **argv, char **env, void *ios);
4
5 int
6 main(int argc, char **argv, char **env)
7 {
8     return RunPerl(argc, argv, env, (void*)0);
9 }