summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2007-06-08 09:07:46 +0000
committerSteve Hay <SteveHay@planit.com>2007-06-08 09:07:46 +0000
commit67696c502b064f1913c631a0eaa9885c8f7e5be8 (patch)
tree0c14c5798c57b70b741d28defcf59f4c515e886c /win32
parenta93c76d3e4665115cea3e11c220832af8061a030 (diff)
downloadperl-67696c502b064f1913c631a0eaa9885c8f7e5be8.tar.gz
Change 31347 should also have removed win32_free_argvw()
because it now isn't used anywhere. p4raw-id: //depot/perl@31356
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c10
-rw-r--r--win32/wince.c10
2 files changed, 0 insertions, 20 deletions
diff --git a/win32/win32.c b/win32/win32.c
index a1c0d46db6..e12ac6789a 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4968,13 +4968,3 @@ Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst)
}
# endif /* USE_ITHREADS */
#endif /* HAVE_INTERP_INTERN */
-
-static void
-win32_free_argvw(pTHX_ void *ptr)
-{
- char** argv = (char**)ptr;
- while(*argv) {
- Safefree(*argv);
- *argv++ = Nullch;
- }
-}
diff --git a/win32/wince.c b/win32/wince.c
index 7acea0b92e..2926803bb9 100644
--- a/win32/wince.c
+++ b/win32/wince.c
@@ -2834,16 +2834,6 @@ Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst)
# endif /* USE_ITHREADS */
#endif /* HAVE_INTERP_INTERN */
-static void
-win32_free_argvw(pTHX_ void *ptr)
-{
- char** argv = (char**)ptr;
- while(*argv) {
- Safefree(*argv);
- *argv++ = Nullch;
- }
-}
-
// added to remove undefied symbol error in CodeWarrior compilation
int
Perl_Ireentrant_buffer_ptr(aTHX)