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