summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/fstat.al
diff options
context:
space:
mode:
Diffstat (limited to 'lib/auto/POSIX/fstat.al')
-rw-r--r--lib/auto/POSIX/fstat.al13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/auto/POSIX/fstat.al b/lib/auto/POSIX/fstat.al
deleted file mode 100644
index 64ac1b6dad..0000000000
--- a/lib/auto/POSIX/fstat.al
+++ /dev/null
@@ -1,13 +0,0 @@
-# NOTE: Derived from POSIX.pm. Changes made here will be lost.
-package POSIX;
-
-sub fstat {
- usage "fstat(fd)", caller if @_ != 1;
- local(*TMP);
- open(TMP, "<&$_[0]"); # Gross.
- local(@l) = stat(TMP);
- close(TMP);
- @l;
-}
-
-1;