summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl')
-rw-r--r--chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl b/chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl
deleted file mode 100644
index b3ef33ebd9f..00000000000
--- a/chromium/third_party/cygwin/lib/perl5/5.10/shellwords.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-;# shellwords.pl
-;#
-;# Usage:
-;# require 'shellwords.pl';
-;# @words = shellwords($line);
-;# or
-;# @words = shellwords(@lines);
-;# or
-;# @words = shellwords(); # defaults to $_ (and clobbers it)
-
-require Text::ParseWords;
-*shellwords = \&Text::ParseWords::old_shellwords;
-
-1;