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