summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/gets.al
diff options
context:
space:
mode:
Diffstat (limited to 'lib/auto/POSIX/gets.al')
-rw-r--r--lib/auto/POSIX/gets.al10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/auto/POSIX/gets.al b/lib/auto/POSIX/gets.al
deleted file mode 100644
index d989692172..0000000000
--- a/lib/auto/POSIX/gets.al
+++ /dev/null
@@ -1,10 +0,0 @@
-# NOTE: Derived from POSIX.pm. Changes made here will be lost.
-package POSIX;
-
-sub gets {
- usage "gets(handle)", caller if @_ != 1;
- local($handle) = shift;
- scalar <$handle>;
-}
-
-1;