summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/fcntl.al
diff options
context:
space:
mode:
Diffstat (limited to 'lib/auto/POSIX/fcntl.al')
-rw-r--r--lib/auto/POSIX/fcntl.al9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/auto/POSIX/fcntl.al b/lib/auto/POSIX/fcntl.al
new file mode 100644
index 0000000000..8108a00fc6
--- /dev/null
+++ b/lib/auto/POSIX/fcntl.al
@@ -0,0 +1,9 @@
+# NOTE: Derived from POSIX.pm. Changes made here will be lost.
+package POSIX;
+
+sub fcntl {
+ usage "fcntl(filehandle, cmd, arg)", caller if @_ != 3;
+ fcntl($_[0], $_[1], $_[2]);
+}
+
+1;