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