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