summaryrefslogtreecommitdiff
path: root/sample/trap.pl
diff options
context:
space:
mode:
Diffstat (limited to 'sample/trap.pl')
-rw-r--r--sample/trap.pl6
1 files changed, 0 insertions, 6 deletions
diff --git a/sample/trap.pl b/sample/trap.pl
deleted file mode 100644
index ce022d4062..0000000000
--- a/sample/trap.pl
+++ /dev/null
@@ -1,6 +0,0 @@
-$SIG{'INT'} = 'test';
-
-while (<>) {
- print;
-}
-sub test { print "C-c handled\n"; }