summaryrefslogtreecommitdiff
path: root/Lib/perl5
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-05-15 18:21:59 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-05-15 18:21:59 +0100
commit0307d0732c7c7c682d2b5542475f6171d287f7a2 (patch)
treee13d14ce71a05ba212028921ab8edae3f3f0b304 /Lib/perl5
parentb15fed7d2de7e72c4d793664e3e60eeb2841be53 (diff)
downloadswig-0307d0732c7c7c682d2b5542475f6171d287f7a2.tar.gz
Typemaps for (int ARGC, char **ARGV) fixup
The default typemap should not be in this library file - this is for users to add in if they want C default argument support.
Diffstat (limited to 'Lib/perl5')
-rw-r--r--Lib/perl5/argcargv.i4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/perl5/argcargv.i b/Lib/perl5/argcargv.i
index 5c3968e37..7ab7b66b7 100644
--- a/Lib/perl5/argcargv.i
+++ b/Lib/perl5/argcargv.i
@@ -2,10 +2,6 @@
* --- Argc & Argv ---
* ------------------------------------------------------------ */
-%typemap(default) (int ARGC, char **ARGV) {
- $1 = 0; $2 = NULL;
-}
-
%typemap(in) (int ARGC, char **ARGV) {
int i;
I32 len;