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