diff options
author | Chip Salzenberg <chip@perl.com> | 1997-03-21 14:50:39 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-09 00:00:00 +0000 |
commit | 78ec65c7656b24d386e37c2e5cf28db6ca67b5d1 (patch) | |
tree | c1c69f5c226ac0a74a31eca3b3833a5ffe67f072 /win32/perllib.c | |
parent | 6d4c2119f5cbed48a635a73f723f5d62428daf0a (diff) | |
download | perl-78ec65c7656b24d386e37c2e5cf28db6ca67b5d1.tar.gz |
Put "dXSUB_SYS" last in declarations
Diffstat (limited to 'win32/perllib.c')
-rw-r--r-- | win32/perllib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/perllib.c b/win32/perllib.c index 13d4b8b000..9d2aaa9e2b 100644 --- a/win32/perllib.c +++ b/win32/perllib.c @@ -63,8 +63,9 @@ EXTERN_C void boot_DynaLoader _((CV* cv)); static void xs_init() { - dXSUB_SYS; char *file = __FILE__; + dXSUB_SYS; + newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); } |