diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-14 18:51:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-14 18:51:53 +0000 |
commit | 852c2e52c116ddde31d81b646561262ed796257a (patch) | |
tree | b3b78e07e0f3600507f1a4fb651161793be13dcf /win32/perllib.c | |
parent | 703664f229b1c364f06ceda5f2503d00e2daa04c (diff) | |
download | perl-852c2e52c116ddde31d81b646561262ed796257a.tar.gz |
various win32 fixes
- fixes that silence VC noises about dup exports, non-default libs, and
unsupported *.def file directives
- s/inplace/inplace_label/ malloc.c
- update Config{usemymalloc} based on d_mymalloc
- export Perl_*Vars
- fix makefiles to not build miniperl.exe twice, and to make it properly
when defaults are changed
p4raw-id: //depot/perl@1129
Diffstat (limited to 'win32/perllib.c')
-rw-r--r-- | win32/perllib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/perllib.c b/win32/perllib.c index 4b57963a99..3bec9c0c51 100644 --- a/win32/perllib.c +++ b/win32/perllib.c @@ -9,7 +9,7 @@ static void xs_init _((void)); -__declspec(dllexport) int +DllExport int RunPerl(int argc, char **argv, char **env, void *iosubsystem) { int exitstatus; |