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